php-windows Digest 24 Dec 2003 07:10:46 -0000 Issue 2055

2003-12-24 Thread php-windows-digest-help
php-windows Digest 24 Dec 2003 07:10:46 - Issue 2055 Topics (messages 22421 through 22424): Regular Expressions 22421 by: Gerardo Rojas 22422 by: Frank M. Kromann Re: open directory and read the file 22423 by: Sven Schnitzke 22424 by: Daniel Crespo Administr

[PHP-WIN] Re: open directory and read the file

2003-12-24 Thread Daniel Crespo
I think you have the problem in: $handle_file = fopen ($find_file, "r"); while (!feof ($handle_file)){ $buffer = fgets($handle_file, 4096); echo "$buffer"; } Right? Well, I think the next code could help you: "; } ?> This prints each line of the text file. I hope it helps you. "I