[PHP] PHP, C++, and LAN

2001-08-01 Thread Keith Jeffery
t. I've even tried changing the current working directory in the C++ program and to no avail. Does anybody have any insight, or perhaps another route down which to travel? I will happily provide PHP and/or C++ code for what I'm doing. Thank you, Keith Jeffery [EMAIL PROTECTED] -- PH

[PHP] Re: PHP EDITOR 4 WINDOWS?

2001-08-01 Thread Keith Jeffery
http://www.soysal.com/PHPEd/ Although, after using it for a while I've decided that I simply like Ultra Edit better. www.ultraedit.com Keith Jeffery [EMAIL PROTECTED] "Kyle Smith" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]..

[PHP] Re: Hmmm?

2001-08-01 Thread Keith Jeffery
Simply indent formatting for readability. I personally don't indent after the wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Whenever i get a php script off a website why is it that most of the main parts in the script have a space from the left border. eg -lk6- http://ww

[PHP] Re: fopen(fd, "w") doesn't work?

2001-08-01 Thread Keith Jeffery
for the first part, make sure that you have write permission to the directory specified, and for the second, you can't open a file for writing from a remote location. Keith Jeffery [EMAIL PROTECTED] "Ibrahim Noor" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]&q

[PHP] Re: Hmmm?

2001-08-01 Thread Keith Jeffery
; echo "Counting from 1-32"; > for ($ii = '1'; $ii <= '32' $ii++) { > echo $ii." "; > } > } > echo "All done!"; > ?> > > Best Regards > Fredrik A. Takle > > "Keith Jeffery" <[EMAIL PROTECTED]> wrote in

[PHP] Re: How can I make a Loading... screen?

2001-08-01 Thread Keith Jeffery
kingClose() { imgWindow.close(); } and then at the beginning of the page, before the search begins, in php I put echo "itsThinkingOpen()"; and after the code to search the database I put echo "itsThinkingClose()"; It works fine here. Keith Jeffery [EMAIL PROTECTED] "Michael

Re: [PHP] Re: How can I make a Loading... screen?

2001-08-01 Thread Keith Jeffery
> } > > > > and then at the beginning of the page, before the search begins, in php I > > put > > echo "itsThinkingOpen()"; > > > > and after the code to search the database I put > > echo "itsThinkingClose()"; > > > > I

Re: [PHP] Character newline (\n), How to

2001-08-01 Thread Keith Jeffery
My guess is that it is working, just not like you'd expect. You're generating HTML, so if you want a new line to be displayed in your HMTL document you need to do echo "Hello there"; instead of "Hello there\n"; \n will give you a pretty new line if you look at

[PHP] Re: PHP, C++, and LAN

2001-08-01 Thread Keith Jeffery
Why doesn't $dir = opendir("//harp/graphics/"); work anyway? Is this an oversite in the Win32 development of PHP? You're able to do this in Perl. "Keith Jeffery" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...