[PHP] PHP, C++, and LAN

2001-08-01 Thread Keith Jeffery
++ 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] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

[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]... Does it really exist? If

[PHP] Re: Hmmm?

2001-08-01 Thread Keith Jeffery
Simply indent formatting for readability. I personally don't indent after the ? tag, but to each his/her own. Kyle Smith [EMAIL PROTECTED] 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

[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]">news:[EMAIL P

[PHP] Re: Hmmm?

2001-08-01 Thread Keith Jeffery
echo $ii. ; } } echo brAll done!; ? instead of: ?php if ($submit) { echo Counting from 1-32br; for ($ii = '1'; $ii = '32' $ii++) { echo $ii. ; } } echo brAll done!; ? Best Regards Fredrik A. Takle Keith Jeffery [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]"

[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 scriptitsThinkingOpen()/script; and after the code to search the database I put echo scriptitsThinkingClose()/script; It works fine here. Keith Jeffery [EMAIL PROTECTED] Michael Champagne [EMAIL PROTECTED] wrote

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

2001-08-01 Thread Keith Jeffery
ingClose()/script; It works fine here. Keith Jeffery [EMAIL PROTECTED] Michael Champagne [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I have a popup window that populates a table with rows from a database and it normally takes about

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 therebr; instead of Hello there\n; \n will give you a pretty new line if you look at the source of the page Keith

[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]... Hello, I'm writing some PHP