<?php //$fp = fopen ("C:/Program Files/localhost/info.txt", "r"); //$fp = fopen ("http://compcanlit.ca/", "r"); $fp = fopen ("./info.txt", "r");
while (!foef($fp)) { $line = fgets($fp, 1024); echo $line; } fclose($fp); ?> what you were doing was opening a file ready for reading and then printing the pointer to the file, and not the file itself... -----Original Message----- From: jtjohnston [mailto:[EMAIL PROTECTED]] Sent: Friday, December 21, 2001 4:13 PM To: [EMAIL PROTECTED] Subject: [PHP] Beginner question? This seems newbie. So what am I doing wrong? I want to print the contents of the file. I get resource id #1 instead. Do I need to add a header or what? <?php //$fp = fopen ("C:/Program Files/localhost/info.txt", "r"); //$fp = fopen ("http://compcanlit.ca/", "r"); $fp = fopen ("./info.txt", "r"); print $fp; fclose($fp); ?> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]