0

重複の可能性:
mysql_real_escape_string() 使用中のエラー

Warning: mysql_real_escape_string() [function.mysql-real-escape-string]: Access denied for user 'ksj'@'localhost' (using password: NO) in /home/ksj/public_html/cp/SuperSimpleBlogScriptV2_5_7/setup-complete.php on line 2

これは setup-complete.php ファイルです

<?php
$site = mysql_real_escape_string($_GET['site']);
$page = mysql_real_escape_string($_GET['page']);
$path = mysql_real_escape_string($_GET['path']);

//destroy the setup file
if(!unlink("$path/setup.php")){ /* try windows */ unlink("$path\setup.php"); }

header("Location: http://www.supersimple.org/success.php?link=$site/$page");
?>
4

1 に答える 1

2

mysql_real_escape_stringアクティブな接続がない場合に暗黙的に作成する接続が必要です。

最初に正しい資格情報を使用して接続を開きます

mysql_connect($server, $username, $password);
于 2012-05-24T23:58:11.110 に答える