我正在尝试使用 PHP 进行基本的 MYSQL 搜索。我有一个 2 表数据库(员工和图片),我想以表格格式查询和输出。目前,我无法让我的查询正确地从数据库中提取。请注意,我使用 mysql 而不是 mysqli 进行连接。由于项目限制,我不能使用mysqli。可以提供的任何帮助将不胜感激。
//queries the database tables. Takes data from two tables, staff and pic and joins them together (innerjoin)
$query = "SELECT staff.tfid, staff.lname, staff.fname, pic.file".
"FROM staff, pic ".
"WHERE staff.tfid = pic.tfid";
$result = mysql_query($query) or die(mysql_error());
// Print out the contents of each row into a table
while($row = mysql_fetch_array($result)){
echo $row['tfid']. " - ". $row['lname']. " - ". $row['fname']. " - ". $row ['file'] ;
echo "<br />";