rafiki
02-10-2007, 10:31 AM
hi im tryin to run a tst database but get errors
Warning: mysql_query() [function.mysql-query]: Access denied for user 'ODBC'@'localhost' (using password: NO) in C:\Program Files\xampp\xampp\htdocs\createdb.php on line 3
Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in C:\Program Files\xampp\xampp\htdocs\createdb.php on line 3
errorsuccess
this is in my createdb.php
<?php
$query = "CREATE DATABASE phpcake";
$result = mysql_query($query);
if (!$result)
{
echo "error";
}
{
echo "success";
}
?>
Warning: mysql_query() [function.mysql-query]: Access denied for user 'ODBC'@'localhost' (using password: NO) in C:\Program Files\xampp\xampp\htdocs\createdb.php on line 3
Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in C:\Program Files\xampp\xampp\htdocs\createdb.php on line 3
errorsuccess
this is in my createdb.php
<?php
$query = "CREATE DATABASE phpcake";
$result = mysql_query($query);
if (!$result)
{
echo "error";
}
{
echo "success";
}
?>