kaimason1 Posted March 1, 2009 Share Posted March 1, 2009 Warning: main(usernamepassworddatabasephp) [function.main]: failed to open stream: No such file or directory in /home/mekam2/public_html/kai/database/post_books.php on line 56 Warning: main() [function.include]: Failed opening 'usernamepassworddatabasephp' for inclusion (include_path='.:/usr/lib/php') in /home/mekam2/public_html/kai/database/post_books.php on line 56 I am getting this message from my script. Here is line 56: include(usernamepassworddatabase.php); Link to comment https://forums.phpfreaks.com/topic/147372-solved-inclusion-error/ Share on other sites More sharing options...
kaimason1 Posted March 1, 2009 Author Share Posted March 1, 2009 bump Link to comment https://forums.phpfreaks.com/topic/147372-solved-inclusion-error/#findComment-773578 Share on other sites More sharing options...
Philip Posted March 1, 2009 Share Posted March 1, 2009 include('usernamepassworddatabase.php'); You need quotes - and make sure that is the correct path to the file Link to comment https://forums.phpfreaks.com/topic/147372-solved-inclusion-error/#findComment-773579 Share on other sites More sharing options...
kaimason1 Posted March 1, 2009 Author Share Posted March 1, 2009 Thank you! I feel dumb... it worked! Link to comment https://forums.phpfreaks.com/topic/147372-solved-inclusion-error/#findComment-773580 Share on other sites More sharing options...
PFMaBiSmAd Posted March 1, 2009 Share Posted March 1, 2009 If you set error_reporting to E_ALL, which it should be when learning php (or learning anything new in php), developing php code, or debugging php code, you would have gotten the following two errors that would have alerted you to a problem with the syntax for the file name - Notice: Use of undefined constant usernamepassworddatabase - assumed 'usernamepassworddatabase' in your_file.php on line 4 Notice: Use of undefined constant php - assumed 'php' in your_file.php on line 4 Link to comment https://forums.phpfreaks.com/topic/147372-solved-inclusion-error/#findComment-773595 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.