我试图从数据库中显示内容。 没有显示任何值。 为什么我的代码不起作用?我也运行了xampp服务器!
<html>
<body>
<?php$username="";$password="";$database="login";
mysql_connect("localhost:170",$username,$password);
@mysql_select_db($database) or die( "Unable to select database");
$query="SELECT * FROM logindetails";
$result=mysql_query($query);
$num=mysql_numrows($result);mysql_close();?>
<table border="0" cellspacing="2" cellpadding="2">
<tr>
<td>
<font face="Arial, Helvetica, sans-serif">Value1</font>
</td>
<td>
<font face="Arial, Helvetica, sans-serif">Value2</font>
</td>
</tr>
<?php$i=0;while ($i < $num) {$f1=mysql_result($result,$i,"Username");
$f2=mysql_result($result,$i,"Email");?>
<tr>
<td>
<font face="Arial, Helvetica, sans-serif"><?php echo '$f1'; ?></font>
</td>
<td>
<font face="Arial, Helvetica, sans-serif"><?php echo '$f2'; ?></font>
</td>
</tr>
<?php$i++;}?>
</body>
</html>
答案 0 :(得分:1)
你的php中有一个拼写错误:
$num = mysql_numrows( $result );
没有mysql_numrows
功能,请将其更改为:
$num = mysql_num_rows( $result );
请注意:
mysql _ 在PHP 5.5.0中已弃用,并且已在PHP 7.0.0中删除。相反,应使用 MySQLi 或 PDO_MySQL 扩展程序。
(来自PHP官方网站)
答案 1 :(得分:0)
我相信&#39; mysql_connect&#39;已从PHP 5.5中弃用,如果您正在运行PHP 7.0,则已被删除。您需要使用MySQLi或PDO。
我不相信除了PDO之外可以连接到除MySQL以外的其他数据库之外的两者之间存在很大差异,而MySQLi只能连接到MySQL。
帮助您修复代码。这应该接近你所需要的。我希望它有所帮助
<html>
<body>
<?php
$username="root";
$password="password"; // 'password' set to whatever it is on your DB
$database="login";
$dbc = @mysqli_connect("localhost:170",$username,$password)
OR die( "Unable to select database");
$query="SELECT * FROM logindetails";
$result=mysqli_query($dbc, $query);
$row= mysqli_fetch_array($result);
mysqli_close();
?>
<table border="0" cellspacing="2" cellpadding="2">
<tr>
<td>
<font face="Arial, Helvetica, sans-serif">Value1</font>
</td>
<td>
<font face="Arial, Helvetica, sans-serif">Value2</font>
</td>
</tr>
<?php
//$i=0;while ($i < $num) {$f1=mysql_result($result,$i,"Username");
//$f2=mysql_result($result,$i,"Email");
?>
<tr>
<td>
<font face="Arial, Helvetica, sans-serif"><?php echo "$row['Username']"; ?></font>
</td>
<td>
<font face="Arial, Helvetica, sans-serif"><?php echo "$row['Email']"; ?></font>
</td>
</tr>
<?php
//$i++;}
?>
</body>
</html>