下载本文示例代码
p>一、 while循环
在这一课里,我们将会继续深入下去,使用PHP和MySQL来写出一些简单而有用的页面。我们从昨天创建的数据库开始,显示库中的数据,但是会再稍微加以润色。
首先,我们用下面的代码来查询数据库内容。
$#@60;html$#@62;
$#@60;body$#@62;
$#@60;?php
$db = mysql_connect("localhost", "root");
mysql_select_db("mydb",$db);
$result = mysql_query("SELECT * FROM employees",$db);
echo "$#@60;table border=1$#@62;\n";
echo "$#@60;tr$#@62;$#@60;td$#@62;姓名$#@60;/td$#@62;$#@60;td$#@62;职位$#@60;/td$#@62;$#@60;/tr$#@62;\n";
while ($myrow = mysql_fetch_row($result)) {
printf("$#@60;tr$#@62;$#@60;td$#@62;%s %s$#@60;/td$#@62;$#@60;td$#@62;%s$#@60;/td$#@62;$#@60;/tr$#@62;\n",
$myro
w[1], $myrow[2], $myrow[3]);
}
echo "$#@60;/table$#@62;\n";
?$#@62;
$#@60;/body$#@62;
$#@60;/html$#@62;
p>一、 while循环
在这一课里,我们将会继续深入下去,使用PHP和MySQL来写出一些简单而有用的页面。我们从昨天创建的数据库开始,显示库中的数据,但是会再稍微加以润色。
首先,我们用下面的代码来查询数据库内容。
$#@60;html$#@62;
$#@60;body$#@62;
$#@60;?php
$db = mysql_connect("localhost", "root");
mysql_select_db("mydb",$db);
$result = mysql_query("SELECT * FROM employees",$db);
echo "$#@60;table border=1$#@62;\n";
echo "$#@60;tr$#@62;$#@60;td$#@62;姓名$#@60;/td$#@62;$#@60;td$#@62;职位$#@60;/td$#@62;$#@60;/tr$#@62;\n";
while ($myrow = mysql_fetch_row($result)) {
printf("$#@60;tr$#@62;$#@60;td$#@62;%s %s$#@60;/td$#@62;$#@60;td$#@62;%s$#@60;/td$#@62;$#@60;/tr$#@62;\n",
$myro
w[1], $myrow[2], $myrow[3]);
}
echo "$#@60;/table$#@62;\n";
?$#@62;
$#@60;/body$#@62;
$#@60;/html$#@62;
下载本文示例代码
PHP/MySQL三日通-第二天(一)PHP/MySQL三日通-第二天(一)PHP/MySQL三日通-第二天(一)PHP/MySQL三日通-第二天(一)PHP/MySQL三日通-第二天(一)PHP/MySQL三日通-第二天(一)PHP/MySQL三日通-第二天(一)PHP/MySQL三日通-第二天(一)PHP/MySQL三日通-第二天(一)PHP/MySQL三日通-第二天(一)PHP/MySQL三日通-第二天(一)PHP/MySQL三日通-第二天(一)PHP/MySQL三日通-第二天(一)PHP/MySQL三日通-第二天(一)PHP/MySQL三日通-第二天(一)