|
|
|
ใครมี webboard สวย...สวย มั้งครับ กำลังทำอยู่ครับ แต่อยากได้ที่มันสวยๆ หน่อยครับ |
|
|
|
|
|
|
|
ใช้ css ครับ หรือไม่งั้นลอง search หาพวก template ดู
|
|
|
|
|
Date :
2013-01-30 14:16:24 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ปกติเค้าใช้พวก BBCode กันครับ ลองดู
|
|
|
|
|
Date :
2013-01-30 14:27:19 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอบความคิดเห็นที่ : 2 เขียนโดย : mr.win เมื่อวันที่ 2013-01-30 14:27:19
รายละเอียดของการตอบ ::
ตอนนี่ เว็บบอร์ดที่ผมทำเป็นประมาณนี้ครับ แต่ผมอยากได้ BB CODE มาใส่ตรงรายละเอียดครับแล้วมีการเก็บลงฐานข้อมูลผมต้องทำยังไงมั่งอะครับ
Code (PHP)
<?php
@session_start();
?>
<?
include('ConnectDB.php');
$username = $_COOKIE['username'];
$thai_day_arr=array("อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์");
$thai_month_arr=array(
"0"=>"",
"1"=>"มกราคม",
"2"=>"กุมภาพันธ์",
"3"=>"มีนาคม",
"4"=>"เมษายน",
"5"=>"พฤษภาคม",
"6"=>"มิถุนายน",
"7"=>"กรกฎาคม",
"8"=>"สิงหาคม",
"9"=>"กันยายน",
"10"=>"ตุลาคม",
"11"=>"พฤศจิกายน",
"12"=>"ธันวาคม"
);
function thai_date($time){
global $thai_day_arr,$thai_month_arr;
$thai_date_return="วัน".$thai_day_arr[date("w",$time)];
$thai_date_return.= "ที่ ".date("j",$time);
$thai_date_return.=" เดือน".$thai_month_arr[date("n",$time)];
$thai_date_return.= " พ.ศ.".(date("Yํ",$time)+543);
$thai_date_return.= " ".date("H:i",$time)." น.";
return $thai_date_return;
}
$eng_date=time(); // แสดงวันที่ปัจจุบัน
$sql1= "
SELECT MAX(topicboard_id) FROM topicboard
";
$query1 = mysql_db_query($dbname, $sql1) or die("Can't Query1");
$row1 = mysql_fetch_array($query1);
$id1 = $row1[0] + 1 ;
$sql2= "
SELECT MAX(commentboard_id) FROM commentboard
";
$query2 = mysql_db_query($dbname, $sql2) or die("Can't Query2");
$row2 = mysql_fetch_array($query1);
$id2 = $row2[0] + 1 ;
$sql3= "
SELECT firstname,user_id FROM users where username = '$username'
";
$query3 = mysql_db_query($dbname, $sql3) or die("Can't Query3");
$row3 = mysql_fetch_array($query3);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>BANKUNG SCHOOL</title>
<link rel="stylesheet" type="text/css" href="pro_dropdown_3/pro_dropdown_3.css" />
<script src="pro_dropdown_3/stuHover.js" type="text/javascript"></script>
</head>
<body>
<center><img src="pro_dropdown_3/logo.jpg" width="1000" height="300" /></center>
<span class="preload1"></span>
<span class="preload2"></span>
<ul id="nav">
<li class="top"><a href="main_webboard.php" class="top_link"><span>หน้าแรกการเว็บอร์ด</span></a></li>
<li class="top"><a href="webboard_user_edit.php" class="top_link"><span>จัดการข้อมูล</span></a></li>
<li class="top"><a href="webboard_add.php" class="top_link"><span>เพิ่มหัวข้อใหม่</span></a></li>
<li class="top"><a href="webboard_search.php" class="top_link"><span>ค้นหา</span></a></li>
<li class="top"><a href="logout.php" id="products" class="top_link"><span>ออกจากระบบ</span></a></li>
</ul>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>สมัครสมาชิก</title>
<script type="text/javascript" language="javascript">
function IsCheck(txtuser, txtFname, txtLname, txtUsername, txtPassword, year, telephone)
{
if(document.getElementById(txtuser).value == ''
&& document.getElementById(txtFname).value == ''
&& document.getElementById(txtLname).value == ''
&& document.getElementById(txtUsername).value == ''
&& document.getElementById(txtPassword).value == ''
&& document.getElementById(year).value == ''
&& document.getElementById(telephone).value == ''
)
{
alert('Please insert data');
return false;
}
else if(document.getElementById(txtuser).value == ''
|| document.getElementById(txtFname).value == ''
|| document.getElementById(txtLname).value == ''
|| document.getElementById(txtUsername).value == ''
|| document.getElementById(txtPassword).value == ''
|| document.getElementById(year).value == ''
&& document.getElementById(telephone).value == ''
)
{
alert('Please insert data');
return false;
}
if(document.getElementById(telephone).value != '')
{
var telephoneFilter=/^([0-9]){1,}$/;
var telephone=document.form1.telephone.value;
if (!(telephoneFilter.test(telephone)))
{
alert ("Telephone is number only");
return false;
}
if(strlen(tText) != 10)
{
alert ("Telephone not correct");
return false;
}
}
else
return true;
};
</script>
</head>
<body>
<form name="form1" method="post" action="webboard_add_code.php">
<table width="100%" align="center" cellspacing="0" border="1">
<tr>
<td align="left">หมายเลขเรื่อง</td>
<td><input name="txttopicid" id="txttopicid" type="text" value="<?php echo "$id1";?>" maxlength="5" size="20" readonly="readonly" />*
</td>
</tr>
<tr>
<td align="left">เรื่อง</td>
<td><textarea name="txttopic" id="txttopic" cols="20" rows="4"></textarea>
</td>
</tr>
<tr>
<td width="24%" align="left">หมายเลขรายละเอียด</td>
<td width="76%"><input name="txtcommentid" id="txtcommentid" type="text" value="<?php echo "$id2";?>" maxlength="50" size="20" readonly="readonly" />*
</td>
</tr>
<tr>
<td width="24%" align="left">รายละเอียด</td>
<td width="76%"><textarea name="txtcomment" id="txtcomment" cols="20" rows="4"></textarea>
</td>
</tr>
<tr>
<td align="left">โดย</td>
<td><input name="firstname" id="firstname" type="text" value="<?php echo "$row3[0]";?>" maxlength="20" size="20" readonly="readonly"/>
ID <input name="userid" id="userid" type="text" value="<?php echo "$row3[1]";?>" maxlength="20" size="20" readonly="readonly"/>
</td>
</tr>
<tr>
<td width="24%" align="left">วันที่</td>
<td width="76%"><input name="year" id="year" type="text"value="<?php echo thai_date($eng_date); ?>" maxlength="200" size="50" readonly="readonly" />*
</td>
</tr>
<tr>
<td width="24%"><input type="submit" name="btnSubmit" onclick= "return IsCheck('txtuser','txtFname','txtLname','txtUsername','txtPassword','year','telephone');" value="เพิ่ม"/></td>
<td width="76%"><a href="main_manage.php">ยกเลิก</a></td>
</tr>
</table>
</form>
</body>
</html>
|
ประวัติการแก้ไข 2013-01-31 11:31:28
|
|
|
|
Date :
2013-01-30 14:28:12 |
By :
tangsupap |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|