我有一个连接到数据库的搜索引擎,该数据库在表格中给出结果。
这是表格的样子:
该列organizer_id
包含一个用作参考的数字。相反应该是组织者的名字。
前任:
1280132044 应该是Corporate Inc
你能帮我做这个吗?我是 PHP/MYSQL 的新手
这是打印结果的代码:
while ($row = mysql_fetch_assoc ($result)) {
echo "<tr>\n";
printf("<td><a href='http://embs-group.com/%s,%s'>%s</a></td>", $row['id'], str_replace(" ", "_", $row['name']), $row['name']);
printf("<td>%s</td>", $row['organizer_id']);
printf("<td>%s</td>", $row['no_pages']);
printf("<td>%s</td>", $row['publication_date']);
printf("<td>%s</td>", $row['price']);
printf("<td>%s</td>", $row['currency']);
echo "</tr>\n";
}
echo "</TABLE>\n";
}