ホームページ >バックエンド開発 >PHPチュートリアル >PHP と mysql_PHP を使用して ShoutBox を作成する方法のチュートリアル
作为一个PHP开发人员,我有时被要求作个shoutbox 。 如果同样的事情也发生在你身上,这里有一个快速指南。显然,您要为它添加您自己的CSS在上面,但这里是基本思路。 --- 文件 #1:mysql.inc.php--- -- 文件 #2: install.php-- // include the database info file //连接数据库 $connection= @mysql_connect($host,$user,$password) or die(mysql_error()); //如果我们已经有一个表名字叫做"shouts", 需要先删除它 // 现在确定没有相同名字的表, 创建它
我们需要一个MySQL数据库表和三个PHP文件。
首先,我们需要一个文件保存数据库信息
# Simply Shouting - ashoutboxexample
# File name:mysql.inc.php
# Description: A file to hold database info.
$host =localhost;
$user =database_user_name;
$password=database_user_password;
$name =database_name;
?>
创建一个有四个字段的数据表. 我们命名为shouts. 此前可能你没有这个SQL文件, 创建一个PHP文件"install.php". 这个文件用过一次之后,记得要删除它!
# Simply Shouting - ashoutboxexample
# File name: install.php
# Description: Creates the database table.
include("mysql.inc.php");
$db= @mysql_select_db($name,$connection) or die(mysql_error());
$sql=DROP TABLE IF EXISTS `shouts`;
$result= @mysql_query($sql,$connection) or die(mysql_error());
$sql=CREATE TABLE `shouts` (
`id` int(11) NOT NULL auto_increment,
`timestamp` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`shoutby` varchar(50) default NULL,
`shout` varchar(50) default NULL,
PRIMARY KEY `id` (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1;
echoCreating table: shouts....;
// 关闭连接
$result= @mysql_query($sql,$connection) or die(mysql_error());?>
你的安装过程已经完成. 请立即从你的服务器上删除所有安装文件. 本程序包含以下安装文件:
1) install.php
点击 这里开始.
这是主文件:
--- 文件 #3: index.php---
# Simply Shouting - ashoutboxexample
# File name: index.php
# Description: Main page to display our shouts.
//包含数据库信息
include_once("mysql.inc.php");
//连接数据库
$connection= @mysql_connect($host,$user,$password) or die(mysql_error());
$db= @mysql_select_db($name,$connection) or die(mysql_error());
?>
// we need a counter because I want to show our shouts in ASC order
// (like a chat room)
$sql=mysql_query("SELECT * FROM `shouts`");
while($data=mysql_fetch_array($sql)){
//counts every row
$counting=$counting+1;
} //end while
// if the count comes back greater than 10, then we select the last
// 10 shouts for display.
if($counting>10){
$countlessten=$counting-9;
$sql=mysql_query("SELECT * FROM `shouts` ORDER BY `shouts`.`id` ASC LIMIT $countlessten,10");
}else{
//else it doesnt matter, theres less than 10!
$sql=mysql_query("SELECT * FROM `shouts` ORDER BY `shouts`.`id` ASC LIMIT 10");
}
while($data=mysql_fetch_array($sql)){
//my timestamp field in the database is basically useless to me unless
//I parse it. The following code parses the timestamp into things I
//can use.
$timestamp=$data[timestamp];
$postedyear=substr($timestamp,0,4);
$postedmonth=substr($timestamp,5,2);
$postedday=substr($timestamp,8,2);
$postedtime=substr($timestamp,11,5);
$newpostedtime="";
$nomilitary=substr($postedtime,0,2);
// 時は 12 より大きいので、1 から 12 に戻す必要があります
// 「午後」を追加します
if($nomilitary>=13){
$nomilitary=$nomilitary-12;
$newpostedtime=$nomilitary;
$newpostedtime.=":";
$newpostedtime.=substr($postedtime,3,2) ;
$newpostedtime.=" 午後";
}
if($newpostedtime!="" ){
$postedtime=$newpostedtime;
}else{
$postedtime.=" am";
}
//時間があるので、叫んでみましょう
$shoutby=$data[shoutby];
$shout=$data[shout];
echo$postedmonth."/".$postedday."/".$postedyear." at ".$postedtime." - < ;strong>「.$shoutby.」は言いました: 「.$shout.」
";
// は次のようになります: 2008 年 12 月 1 日午後 5 時 2 分 - ジョシュは言いました: Yo Yo Yo!
}
//以下はシャウトを作成するための HTML フォームです
?>
最後に、私は PHP 文書処理表单を必要とします。
-- 文例#4: newshout.php--
# 単純に叫ぶ - ashoutboxexample
# ファイル名: newshout.php
# 説明:index.php で HTML フォームを処理し、リダイレクトします。
//留言者の姓名を獲得
$shoutby=$_POST[shoutby];
if($shoutby=="ここに名前を入力してください"||$shoutby==""){
//如果没有输入名字
$shoutby ="訪問者";
}
if($_POST[shout]){
// 留言情報
if($_POST[shout] !="Click & Shout!"){
//彼らはデフォルトでは叫ばなかったので、処理を続行します
$shout=$_POST[shout];
//代替换掉"<"和">"黑客を阻止します
$shout=str_replace("<"," ",$shout);
$shout =str_replace(">"," ",$shout);
// 含まれるデータデータ情報
include_once("dbaccess.php");
// 接続データベース库
$connection= @mysql_connect($host,$user, $password) または die(mysql_error());
$db= @mysql_select_db($name,$connection) または die(mysql_error());
// 插入留言情報に数据库
$sql="INSERT INTO `shouts `(`shoutby`,`shout`) VALUES($shoutby,$shout)";
//关闭连接
$result= @mysql_query($sql,$connection);
}
}
?>
< html>