我已连接到数据库但我无法打印查询。我在phpMyAdmin上做了它并且它有效,有表格配置文件和表格请求它们都有正确的关系,现在当我尝试在PHP上执行时它不会打印任何东西。
<?php
include 'mydb.php';
$data = mysql_query("select amount,name from request, profiles where request.profiles_id = profiles.id and request.profiles_id = 23") or die(mysql_error());
Print "<table border cellpadding=3>";
while($info = mysql_fetch_array( $data ))
{
Print "<tr>";
Print "<th>Name:</th> <td>".$info['name'] . "</td> ";
Print "<th>amount:</th> <td>".$info['amount'] . " </td></tr>";
}
Print "</table>";
?>
如何让它打印出适用于phpMyAdmin控制台的信息?我是新手,这是迄今为止我能达到的最远的。