|
|
|
สวัสดีครับ มีปัญาเกี่ยวกับเว็บบอร์ดครับบ มือใหม่ครับ คือมันมีปัญหา ดังรูปนะครับ |
|
|
|
|
|
|
|
มือใหม่ครับ
คือมันมีปัญหา ดังรูปนะครับ ลองตรวจสอบโค้ดดูแล้วก้อ ถูกต้อง แล้วมันขึ้น error อ่ะครับ ไม่ทราบว่ามีปัญหาทางด้านไหนครับ
นี้โค้ดครับ
webboard.php
#
<?
include("genhtml.php");
include("webboard_db.php");
define("HOST","localhost");
define("UNAME","root");
define("PASSWD","1234");
define("DBNAME","webboard");
define("TABLE","question");
function setbegin($row){
global $begin;
$begin = $row;
}
function setend($row){
global $end;
$end = $row - 22;
}
function getbegin(){
global $begin;
return $begin;
}
function getend(){
global $end;
return $end;
}
if((!isset($np)) || (!isset($num))){
$query = check_num_discuss();
$row = data_row($query,"check_data");
if($row <= 22){
$begin = $row;
$end = 0;
}
else{
setbegin($row);
setend($row);
$begin = getbegin();
$end = getend();
}
$menu = array(array("new_discuss.php","ตั้งกระทู้ใหม่"),
array("webboard.php?num=$row&np=".getend(),"หน้าถัดไป"));
}
else{
setbegin($np);
setend($np);
$begin = getbegin();
$end = getend();
$prev = getbegin() + 22;
if($end <= 0){
if($prev == $num)
$menu = array(array("webboard.php","หน้าที่แล้ว"),
array("new_discuss.php","ตั้งกระทู้ใหม่"));
else
$menu = array(array("webboard.php?num=$num&np=".$prev,"หน้าที่แล้ว"),
array("new_discuss.php","ตั้งกระทู้ใหม่"));
}
else{
if($prev == $num)
$menu = array(array("webboard.php","หน้าที่แล้ว"),
array("new_discuss.php","ตั้งกระทู้ใหม่"),
array("webboard.php?num=$num&np=".getend(),"หน้าถัดไป"));
else
$menu = array(array("webboard.php?num=$num&np=".$prev,"หน้าที่แล้ว"),
array("new_discuss.php","ตั้งกระทู้ใหม่"),
array("webboard.php?num=$num&np=".getend(),"หน้าถัดไป"));
}
}
showheader("W e b b o a r d","");
showmenu(menu($menu,1,"#969696"));
?>
<tr>
<td width="100%">
<?
$query = get_discuss(TABLE,"postid",$begin,$end); //order by postid
$str = data_row($query,"get_discuss");
webboard_body($str);
?>
</td>
</tr>
<?
showmenu(menu($menu,1,"#FF9900"));
?>
</table>
</body>
</html>
#
ส่วนนี้ webboard_db.php
#
<?
function conn_db($host,$uname,$passwd,$dbname){
$db = mysql_connect(localhost,root,1234)
or die(errmesg("ไม่สามารถติดต่อกับฐานข้อมูลได้"));
mysql_select_db($dbname,$db);
return $db;
}
function add_data($data,$table){
$query ="insert into $table values(";
list($key,$value) = each($data);
$query = $query."$value";
while(list($key,$value) = each($data))
$query = $query.",'$value'";
$query = $query.")";
return $query;
}
function get_discuss($table,$field,$begin,$end){
$query = "select postid,titles,poster,dates from $table where $field<='$begin' and $field>'$end' order by $field desc";
return $query;
}
function check_num_discuss(){
$query = "select * from question";
return $query;
}
function check_data($table,$value){
$query = "select * $table where postid='$value'";
return $query;
}
function get_ans($value){
$query = "select * from answer where postid='$value' order by ansid asc";
return $query;
}
function data_row($query,$choice){
$str = "";
$db = conn_db(HOST,UNAME,PASSWD,DBNAME);
$result = mysql_query($query,$db);
if(strcmp($choice,"get_discuss") == 0){
$field = mysql_num_fields($result);
while($row = mysql_fetch_array($result))
$str = $str.discuss_body($row,$field);
mysql_free_result($result);
}
else if(strcmp($choice,"get_topic") == 0){
$field = mysql_num_fields($result);
while($row = mysql_fetch_array($result)){
$data = discuss_topic($row,$field);
$str = $str.template($data);
}
mysql_free_result($result);
}
else if(strcmp($choice,"get_ans") == 0){
$field = mysql_num_fields($result);
while($row = mysql_fetch_array($result)){
$data = reply_discuss($row,$field);
$str = $str.template($data);
}
mysql_free_result($result);
}
else if(strcmp($choice,"check_data") == 0)
$str = mysql_num_rows($result);
else if(strcmp($choice,"add_data") == 0)
$str = mysql_affected_rows($db);
return $str;
}
?>
#[/b][b][/b][b]
ขอบคุณมากๆๆครับ
Tag : - - - -
|
|
|
|
|
|
Date :
2010-02-15 16:40:44 |
By :
koptmb |
View :
1010 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Error บอกว่าที่ query อ่ะ ไม่มีข้อมูลคร๊าบ
ลองเช็ค query ดูอีกทีนะครับ
|
|
|
|
|
Date :
2010-02-15 17:01:09 |
By :
onizike |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|