Forum Moderators: coopster
If the bug was inside that file (lib/mysql_qw.php) then errors have to occure in place where sql operations are applied.
Not necessarily... The file is read as part of the PHP where the require resides. Have you tried moving the require line to see if the error follows it? IOW, move the require line somewhere else in the file... Also have you tried requiring a different file to see if you get the same error? If it's truly the require line and not the file itself you should get the same error if you change the file required...
Just a Note: Your require does not have a closing " and () are not required, so you might try removing them and seeing if you get any different results:
Because include() is a special language construct, parentheses are not needed around its argument. Take care when comparing return value.
[us2.php.net...]