The program is finding the include file (if I rename it it complains).
The include function is as follows :-
Code: Select all
<php?
function uopendb($host, $user, $password, $db)
{
mysql_connect($host, $user, $password);
mysql_select_db($db);
hhhlll; // this is an intensional error which doesnt get reported
}
?>