MySQLにつなぐことができない。
PHPで、データベースからデータを取得しようとしたのですが、データベースもパスワードもデータも完璧なのに、以下のようなエラーが出てしまい、1週間不眠不休で調べましたが、全く解決できません。
<エラー>
Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in C:\xampp\htdocs\merhen\data\index.php on line 98
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\merhen\data\index.php on line 99
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\merhen\data\index.php on line 101
<コード>
$sqli="select * from $news_table where order by id desc limit 5";
//SQLで引き抜いて変数に格納する
if(($dbhi = mysql_connect($host,$database_user,$database_password)) != FALSE){
mysql_select_db($dbname) or die("Connect Error!");
$resi = mysql_query($dbhi,$sqli);
$counti = mysql_num_rows($resi);
エラーの意味は分かるんですが、全く解決策がわからないので、精魂尽き果ててしまいそうな状態です。
納期が明日ですので、すぐに回答がいただければと思います。
XAMPP1.6.3a及びPHP5.2を使用しています。