[PHP] connecting to a txt file - newbie

2002-10-10 Thread jennifer
good morning, im having some issues with the simple task of pulling from a txt file. my code is: html head titlejob app/title /headdb body ?php if(!$file=fopen(text.txt, r)) { echo(couldnt open the file); } else { $text = fread($file, 100); fclose($file); } ? /body /html and the

RE: [PHP] connecting to a txt file - newbie

2002-10-10 Thread Timothy J Hitchens
: jennifer [mailto:[EMAIL PROTECTED]] Sent: Friday, 11 October 2002 12:14 AM To: [EMAIL PROTECTED] Subject: [PHP] connecting to a txt file - newbie good morning, im having some issues with the simple task of pulling from a txt file. my code is: html head titlejob app/title /headdb body ?php