我似乎无法在本地主机下运行此代码,我的目标是制作一个应该在网站上显示的表格,但是当我尝试连接时出现错误:
警告:mysql_connect(): in C:\xampp\htdocs\PhpProject2\hent.php 第 5 行无法连接
my site name: http://localhost/PhpProject2/hent.php
编码:
<html>
<body>
<?php
mysql_connect('<server is here>','<my username here>','<password here>')
or die('can not connect' );
mysql_select_db('<my username here>') or die ('can not connect to <username here>');
$sql = "Select * from Customer";
$result = mysql_query($sql);
$number= mysql_num_rows($result);
for($i=0; $i < $number; $i++)
{
$table = mysql_fetch_row($result);
echo $table[0], $table[1];
echo '<br>';
}
?>
</body>
</html>
我正在使用 xampp 并且 MySQL 在端口 3306 上运行:]
而不是我的<username here>,<server is here>,<password here>有真实代码:]
我会很感激任何答案:]