<b>组合
PHP与
MySQL </b>
在这个部分里,我们将建立一个建单的基于
PHP的web站点,用来控制前面所建的
MySQL的表。
我们将建立下面的站点结构(假设你已经知道一些基本的HTML的知识):
1. index.
PHP3 用于前端查看表2. add.
PHP3 用于往表中插入数据
3. Modify.
PHP3 用于修改表中的记录4. del.
PHP3 用于删除表中的记录
首先,我们想查看一下数据库,看一下下面的脚本:
--------------------------------------------------------------------------------
Index.
PHP3:
<html>
<head><title>Web Database Sample Index</title>
</head>
<body bgcolor=#ffffff>
<h2>Data from tbl</h2>
<?
MySQL_connect() or die ("Problem connecting to DataBase");
$query = "select * from tbl";
$result =
MySQL_db_query("example", $query);
if ($result) {
echo "Found these entries in the database:<br><p></p>";
echo "<table width=90% align=center border=1><tr>
<td align=center bgcolor=#00FFFF>User Name</td>
<td align=center bgcolor=#00FFFF>Last Name</td>
<td align=center bgcolor=#00FFFF>Domain Name</td>
<td align=center bgcolor=#00FFFF>Request Date</td>
</tr>";
while ($r =
MySQL_fetch_array($result))
{
$idx = $r["idx"];
$user = $r["UserName"];
$last = $r["LastName"];
$text = $r["FreeText"];
echo "<tr>
<td>$idx</td>
<td>$user</td>
<td>$last</td>
<td>$text</td>
</tr>";
}
echo "</table>";
}
else
{
echo "No data.";
}
MySQL_free_result($result);
include ('links.x');
?>
</body>
</html>--------------------------------------------------------------------------------
好,下面给出一些说明:
我们先用正常的html标签创建thml文档。当我们想从html中出来转入
PHP中时,我们用<?来打开
PHP部分,这个告诉web服务器将后面的文本看成是
PHP语法而不是一般的html。使用?>来结束
PHP部分。
MySQL_connect() 命令告诉
PHP建立一个与
MySQL服务器的连接。如果连接建立成功,脚本将继续,如果不成功,则打印出die命令的信息“Problem connecting to Database”(如果要看关于
MySQL_connect的更多的信息和其它的
PHP函数,可以去下的文档中查找)。
现在,如果
MySQL是按照我们上面所讨论的那样安装的,就足够了。但是如果你使用的是预装的
MySQL(象ISP),你应该使用下面的命令:
MySQL_connect (localhost, username, password);
我们可以将$query设成我们想在
MySQL中执行的查询,然后使用
MySQL_db_query命令来执行它:
$result =
MySQL_db_query("example", $query);
这时,"example"表示数据库的名字并且$query是要进行的查询。
< 我们使用
MySQL命令select(象上面所描述的)来从表中取得所有的数据:
$query = "select * from tbl";
简单地解释一下$result的作用,如果执行成功,函数将返回一个查询结果的一个
MySQL结果标识符,如 果出错则返回false。返回的不是结果而是一个标识符,可以在后面将它转换成我们所需的信息。
现在,我们想检查一下在数据库中是否存在有记录,并且如果有则将结果按照html的表格结构打印出来。为了检查是否存在数据,我们使用if命令和下面的语法:
if (argument) {
"do something;"
} else {
"do something different;"
}
这时"do something"当argument=true时你所要执行的命令,"do something different"为当argument =false时所要执行的命令。
注意我们使用echo命令来输出一些html标签来建立html的表格结构。只有从
PHP命令输出的文本才会被 看成html内容 -
PHP命令本身是不会看成html内容的。我们使用的另一个命令是while指令,使用格式如下:
while (argument)) {
"something to do";
}
while循环在argument=true时会不停地重复,执行在{}中的指令集。
这里我们组合了while循环和
PHP函数$r=
MySQL_fetch_array($result)。这个函数根据相应的结果标识 符取回一条记录,并且将结果放在一个相关数组(associative array)$r中,它使用字段的名字作为数组的 键值。在我们的脚本中,我们将得到一个数组:$r['idx'],$r['UserName'],$r['LastName']和
$r['FreeText']。
我们也可以使用
MySQL_fetch_row函数,它会将结果放在一个有序的数组中,我们可以使用$r[0],$r[1], $r[2]和$r[3]来得到相应的值。
要了解关于这些函数的更深入的信息 现在,我们有了所有的信息,我们可以把它在html表格中打印出来:
echo "<tr>
<td>$idx</td>
<td>$user</td>
<td>$last</td>
<td>$text</td>
</tr>";
现在我们可以释放
MySQL连接,并且释放一些资源,通过使用
MySQL_free_result($result)函数。
PHP另一个有用的特性是在脚本中包括文本文件的功能。让我们假设你有一些可重用的代码(例如到其它页面的链接),我们可以使用include函数,这样可以节省一些代码和时间。而且,如果想改变这些代码,我们只需要改变包含文件的内容,它将会在所有包括它的文件中生效。
这里我们创建一个名为Links.x的文本文件,它将存放我们想用在每一个页面中的全部链接菜单。
<p></p>
<ul>
<li><a href="index.
PHP3">Home</a>
<li><a href="add.
PHP3">Add a new entry to the DataBase</a>
<li><a href="edit.
PHP3">Edit an entry</a>
<li><a href="del.
PHP3">Delete an entry from the DataBase</a>
</ul>
include的语法是:
Include ('included_text_file');
现在我们可以用?>来关闭
PHP部分,并且用</body></html>来结束html页面。
使用表单增加数据让我们看一下下面的代码:
--------------------------------------------------------------------------------
<html>
<head><title>Add an entry to the database</title>
</head>
<body bgcolor=#ffffff>
<h1>Add an entry</h1>
<form method="post" action="add2tbl.
PHP3">
<table width=90% align=center>
<tr><td>Index:</td><td><input type=text name="idx" size=3 maxlength=3></td></tr>
<tr><td>UserName:</td><td><input type=text name="UserName" size=40
maxlength=100></td></tr>
<tr><td>LastName:</td><td><input type=text name="LastName" size=40
maxlength=100></td></tr>
<tr><td>FreeText:</td><td><input type=text name="FreeText" s=40 maxlength=100></td></tr>
<tr><td></td><td><input type=submit value=add></td></tr>
</form>
</table>
<?
PHP include ('links.x');?>
</body>
</html>
--------------------------------------------------------------------------------
假设你对表单很熟悉,这是一个相当简单的脚本。我们根据html页面设计了一个表单,它在提交后调用 add2tbl.
PHP3脚本。现在,表单与
MySQL表相对应由4个字段组成:index number,FirstName,LastName和 FreeText。注意在这个表单中字段名字与
MySQL表中字段名一样,但这只是为了方便起见而不是必须。
我们再一次使用了include命令<? include ('links.x');?>(象在前面所解释的)来增加链接。
让我们看一下add2tbl.
PHP3脚本:
--------------------------------------------------------------------------------
<html>
<body>
<?
if ($UserName)
{
MySQL_connect() or die ("Problem connecting to DataBase");
$query = "insert into tbl values ('$idx','$UserName','$LastName','$FreeText')";
$result =
MySQL_db_query("example", $query);
echo "Data inserted. new table:<br><p></p>";
$query = "SELECT * FROM tbl";
$result =
MySQL_db_query("example", $query);
if ($result)
{
echo "<table width=90% align=center border=1><tr>
<td align=center bgcolor=#00FFFF>idx</td>
<td align=center bgcolor=#00FFFF>User Name</td>
<td align=center bgcolor=#00FFFF>Last Name</td>
<td align=center bgcolor=#00FFFF>Free Text</td>
</tr>";
while ($r =
MySQL_fetch_array($result))
{
$idx = $r["idx"];
$user