hey-

I have a piece of code which does a simply INSERT query into an mp3 table.
I've tested it out, and it completes the query, however there is one bug
that I just have no clue about.

this code does not work when i try to connect to the db:
include("lib/db_config.php");

$connection = db_connect("fplg");
if(!connection) {
     die(sql_error());
}
the include fails and so the db_connect function is undefined.

this code works:
include("db_config.php");

$connection = db_connect("fplg");
if(!connection) {
     die(sql_error());
}

I DO have a directory called lib in my root folder. am I calling the include
wrong in that first piece. Note that I also tried the first one with a
foward slash in front of the 'lib', but had no luck.

help!
chris



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to