Jump to content

[SOLVED] inclusion error


kaimason1

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.