09/10/2018, 18:25
Cho em biết cái open sourse của shountbox
Bác nào có open sourse của shountbox cho em để em chèn vào web ạ!!!!!!!!!
Bài liên quan
http://lehobac.info
Do ít thời gian nên cũng chưa hoàn chỉnh lắm nhưng dùng cũng được đấy. Ưu điểm là gọn nhẹ, chỉ 1 file duy nhất thôi
Database
code
id int(10) NOT NULL auto_increment,
name varchar(80) NOT NULL default 'lehobac',
email varchar(80) NOT NULL default 'lehobac@yahoo.com',
shout text NOT NULL,
time varchar(9) default '0',
PRIMARY KEY (id)
) TYPE=MyISAM;
<?php
$database ="db_name";
mysql_connect ('localhost','root','pass');
mysql_select_db ($database);
if ($ssubmit)
{
if ((!$_POST***91;'post'***93;)OR((!$_POST***91;'name'***93;)))
{
echo("<center>please type some thing !</center>");
}
else
{
$post = preg_replace("/</","<",$post);
$post = preg_replace("/>/",">",$post);
$post = nl2br($post);
$comments = "$post";
$time = time();
$todo="INSERT INTO cyshout (id,name,email,shout,time) VALUES('','$name','$email','$comments','$time')";
$solution = mysql_query($todo) or die (mysql_error());
if ($solution)
{
echo "<meta http-equiv=\"refresh\" content=\"0;url=shout.php\" >";
}
}
}
//begin
else
{
$todo='SELECT * FROM `cyshout` order by id desc LIMIT 10';
$solution=mysql_query($todo);
while ($place = mysql_fetch_array($solution))
{
$id=$place***91;"id"***93;;
$comments=$place***91;"shout"***93;;
$time = $place***91;"time"***93;;
$time = date("H:i - M d, Y", $time);
echo "» <b>";
echo "<a title=\"+ name: $place***91;name***93;***10;+ email: $place***91;email***93;***10;+ time: $time\" href=\"mailto:$place***91;email***93;\">$place***91;name***93;</a>"; ?>
</b>
<? echo ": $comments<br>" ; ?>
<? echo "<hr color=\"#3399FF\" size=\"1\" >" ; ?>
<? }?>
<center>
<form method="POST" ACTION="shout.php">
<input type="text" size=20 NAME="name" Value="name">
<input type="text" size=20 NAME="email" Value="email@chanhyeu.info">
<input type="text" size=20 NAME="post" Value="">
<br>
<input TYPE="submit" value=" shout " name="ssubmit">
</center>
<? }?>