用PHP和MySQL构建一个数据库驱动的网站(7)
2024-07-24 12:56:16
供稿:网友
现在我们已经有了允许用户输入一个笑话并将其加入到我们的数据库中的程序代码。现在剩下的就是将其加入到我们已做好的笑话显示页面。因为绝大多数的用户只会想要看看笑话,所以我们不想对我们的页面做大的更改,除非用户表示想要添加一个新的笑话。因为这个原因,我们的应用程序应该是一个多功能的页面。下面是程序的代码:
<html>
...
<body>
<?php
// if the user wants to add a joke
if (isset($addjoke)):
?>
<form action="<?php echo($php_self); ?>" method=post>
<p>type your joke here:<br>
<textarea name="joketext" rows=10 cols=40 wrap></textarea><br>
<input type=submit name="submitjoke" value="submit">
</form>
<?php
else:
// connect to the database server
$dbcnx = @mysql_connect("localhost",
"root", "mypasswd");
if (!$dbcnx) {
echo( "<p>unable to connect to the " .
"database server at this time.</p>" );
exit();
}
// select the jokes database
if (! @mysql_select_db("jokes") ) {
echo( "<p>unable to locate the joke " .
"database at this time.</p>" );
exit();
}
// if a joke has been submitted,
// add it to the database.
if ("submit" == $submitjoke) {
$sql = "insert into jokes set " .
"joketext='$joketext', " .
"jokedate=curdate()";
if (mysql_query($sql)) {
echo("<p>your joke has been added.</p>");
} else {
echo("<p>error adding submitted joke: " .
mysql_error() . "</p>");
}
}
echo("<p> here are all the jokes " .
"in our database: </p>");
// request the text of all the jokes
$result = mysql_query(
"select joketext from jokes");
if (!$result) {
echo("<p>error performing query: " .
mysql_error() . "</p>");
exit();
}
// display the text of each joke in a paragraph
while ( $row = mysql_fetch_array($result) ) {
echo("<p>" . $row["joketext"] . "</p>");
}
// when clicked, this link will load this page
// with the joke submission form displayed.
echo("<p><a href='$php_self?addjoke=1'>" .
"add a joke!</a></p>");
endif;
?>
</body>
</html>
现在我们有了一个单独的文件,这个文件包含不太多的php代码,通过这个文件,我们可以显示我们的mysql数据库中的笑话并能向我们的mysql数据库中添加笑话。
一个挑战
作为家庭作业,你可以看看你是不是能解决这么一个问题:在页面上显示的每一个笑话后面放置一个叫“delete this joke”的超连接,当单击这个连接时,会从数据库中删除这个笑话并显示更改过以后的笑话列表。下面是对你的一些提示:
你可以还在一个多功能页面完成全部的功能。
你需要使用sql的delete命令,这个命令我们曾在第二章中学习过。
这是一个关键的问题。要删除一个指定的数据库,你需要能够唯一地标识它。jokes表中的id可以完成这个功能。你必须将要被删除的笑话的id传递到删除笑话的请求中。将这个值放到“delete this joke”连接的查询字符串中是比较合适的。
如果你觉得你已经有了答案,或者你只想知道解决方案,那就去看看下一页。祝你好运!
结语
在这一章中,我们学习了一些新的用来实现与mysql数据库服务接口的php函数。使用这些函数,我们建立了我们的第一个数据库驱动的网站,我们的这个网站可以在线地发布我们数据库中笑话并允许访问者向其中添加他们自己的笑话。
在第五章中,我们会回到mysql命令行去学习如何使用关系型数据库的原理以及其他一些更高级的sql查询去描述更为复杂的信息,并给予访问者对他们自己添加的笑话以特别的权限!
挑战的解决
这是我们上面提出的“家庭作业”的解决方案。要在每一个笑话后面添加一个“delete this joke”连接,必须作下面的改动:
之前,我们曾经在我们的页面的底端的“add a joke!”连接中传递过一个$addjoke变量,通过这个变量来通知我们的脚本不再显示通常的笑话列表,而是显示一个录入笑话的表单。与此相类似,我们在我们的“delete this joke”连接中传递一个$deletejoke变量来表示我们想要删除一个笑话。
在获得每一个笑话的joketext列的同时,我们还获得了id列的值,所以我们获得了与数据库中每一个笑话关联的id。
我们将要删除的笑话的id值赋予$deletejoke变量。这是通过将从数据库中获得的id值插入到每一个笑话的“delete this joke”连接中来实现的。
使用了一个if 语句,如果在载入这一页时,我们的$deletejoke被赋予了一个值(使用isset函数),我们会在一个sqldelete语句中使用这个值(将被删除的笑话的id)来删除指定的笑话。
这儿是全部的源代码:
<html>
...
<body>
<?php
// if the user wants to add a joke
if (isset($addjoke)):
?>
<form action="<?php echo($php_self); ?>" method=post>
<p>type your joke here:<br>
<textarea name="joketext" rows=10 cols=40 wrap></textarea><br>
<input type=submit name="submitjoke" value="submit">
</form>
<?php
else:
// connect to the database server
$dbcnx = @mysql_connect(
"localhost", "root", "mypasswd");
if (!$dbcnx) {
echo( "<p>unable to connect to the " .
"database server at this time.</p>" );
exit();
}
// select the jokes database
if (! @mysql_select_db("jokes") ) {
echo( "<p>unable to locate the joke " .
"database at this time.</p>" );
exit();
}
// if a joke has been submitted,
// add it to the database.
if ("submit" == $submitjoke) {
$sql = "insert into jokes set " .
"joketext='$joketext', " .
"jokedate=curdate()";
if (mysql_query($sql)) {
echo("<p>your joke has been added.</p>");
} else {
echo("<p>error adding submitted joke: " .
mysql_error() . "</p>");
}
}
// if a joke has been deleted,
// remove it from the database.
if (isset($deletejoke)) {
$sql = "delete from jokes " .
"where id=$deletejoke";
if (mysql_query($sql)) {
echo("<p>the joke has been deleted.</p>");
} else {
echo("<p>error deleting joke: " .
mysql_error() . "</p>");
}
}
echo("<p> here are all the jokes " .
"in our database: </p>");
// request the id and text of all the jokes
$result = mysql_query(
"select id, joketext from jokes");
if (!$result) {
echo("<p>error performing query: " .
mysql_error() . "</p>");
exit();
}
// display the text of each joke in a paragraph
// with a "delete this joke" link next to each.
while ( $row = mysql_fetch_array($result) ) {
$jokeid = $row["id"];
$joketext = $row["joketext"];
echo("<p>$joketext " .
"<a href='$php_self?deletejoke=$jokeid'>" .
"delete this joke</a></p>");
}
// when clicked, this link will load this page
// with the joke submission form displayed.
echo("<p><a href='$php_self?addjoke=1'>" .
"add a joke!</a></p>");
endif;
?>
</body>
</html>
中国最大的web开发资源网站及技术社区,