php 输出连接语句到表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 输出连接语句到表相关的知识,希望对你有一定的参考价值。

$result = 'Some Query'

print '<table><thead><tr><th>COlumn Title</th><th>Column Title</th></tr></thead>';
print '<tbody>';
// now loop through your query results and put stuff into the table
// of course you can monkey around with the table format and what goes in each cell
foreach($result as $row) {
    print '<tr><td>'.$row->column_name.'</td><td>'.$row->column_name.'</td></tr>';
}
print '</tbody></table>';

以上是关于php 输出连接语句到表的主要内容,如果未能解决你的问题,请参考以下文章

将SP的输出游标合并到表中?

php 如何输出DB类上所有SQL语句,页面上的所有 有关mysql 连接,语句 等信息

php对两个mysql数据表的修改问题?把表A的内容更新到表B里面。

PHP- .字符串连接符说明

将连接的值插入到表中

php显示取到表中某一列的全部数据