Hello,
anyone may tell me what's wrong here ?
(I am trying to delete mysql user user_one)
$dbh=mysql_connect ("localhost", "root", "mypass") or die ('Error' . mysql_error());
$sqlinterr = "DELETE user user_one";
$res = mysql($sqlinterr,$dbh);
mysql_close ();
Thank you
GraZ