你好,我想显示我的客户信息表,但我不能一个我是新的php。这是我的密码
<?php
mysqli_connect("localhost","root","","company");
mysql_select_db('company');
$sql="SELECT * FROM musteri";
$records = mysql_query($sql);
?>
<html>
<head>
<title>Customer Data</title>
</head>
<body>
<table width="600" border="1" cellpadding="1" cellspacing="1">
<tr>
<th>ID</th>
<th>İsim</th>
<th>Soyad</th>
<th>Email</th>
<th>Doğum Tarihi</th>
</tr>
<?php
while($musteri = mysql_fetch_assoc($records))
echo "<tr>";
echo "<td>".$customer['id']."</td>";
echo "<td>".$customer['age']."</td>";
echo "<td>".$customer['email']."</td>";
echo "<td>".$customer['dogumtarih']."</td>";
echo "</tr>";
?>
</table>
</body>
</html>
你能帮帮我吗?我怎样才能解决这个问题。。。
2条答案
按热度按时间3ks5zfa01#
不能同时使用mysql和mysqli,使用mysqli或mysql作为整个db语法
首先替换第一行代码
uqzxnwby2#
更新代码: