yshua Posted July 23, 2012 Share Posted July 23, 2012 Dear readers: Insert.php is customer info input menu which calls db.php. I have created db.php, per MarPlo's advice as follows: Code: [select] $conn = mysql_connect( "localhost", "host", "giraffeag1e14") or die("Unable to connect to MySQL"); mysql_select_db("reccus2"); if (mysql_error()) { echo "<br />". mysql_errno(). " : ". mysql_error(); } And now have following warnings and fatal emsg: Warning: include(admin/includes/db.php) [function.include]: failed to open stream: No such file or directory in C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\insert.php on line 2 Warning: include() [function.include]: Failed opening 'admin/includes/db.php' for inclusion (include_path='.;C:\php\pear') in C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\insert.php on line 2 Fatal error: Call to undefined function mysql_query() in C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\insert.php on line 4 Any tips/advice would be appreciated, Yshua :-\ Quote Link to comment https://forums.phpfreaks.com/topic/266131-upon-replacing-missing-dbphp-file-emsgs-are-confusing/ Share on other sites More sharing options...
yshua Posted July 31, 2012 Author Share Posted July 31, 2012 Dear readers: Solved! Emsgs came and went while tinkering.... Apparently bogus field checking was taking place in javascript.js code by third party! Now a whole new can of worms was opened up. A lot of coding to do! Thanks everyone, Yshua Quote Link to comment https://forums.phpfreaks.com/topic/266131-upon-replacing-missing-dbphp-file-emsgs-are-confusing/#findComment-1365592 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.