How come my .php fopen() methods are not working. It says that it can't find the file? Any help is greatly appreciated:
#!/usr/local/bin/php <?php $strLessonDescription = fopen("c:\\exercise5\\content\\lesson5.txt", "r") or die ("Error - lesson5.txt cannot be opened"); $arrLessonVocabulary = fopen("c:\\lovej2ee\\exercise5\\content\\vocabulary5.txt", "r") or die ("Error - lesson5.txt cannot be opened"); ?>