|
|
|
ส่งค่าทั้งlist boxและtext fieldลงฐานข้อมุลถ้าพิมชื่อที่textก้อจะส่งค่าไปแต่ถ้าเลือกที่listboxก้อส่งค่าไปเช่นกัล |
|
|
|
|
|
|
|
หน้าsaves.php
Code (C#)
<div align="center">
<?
$id=$_GET[id];
$head=$_POST[head];
$detail=$_POST[detail];
$id_st=$_SESSION['id_a'];
$email=$_SESSION['email'];
$fname=$_SESSION['fname'];
$id_ad=$_POST[id_ad];
$to_name=$_POST[to_name];
$date=date("Y-m-d");
$active = 1;
include "../include/conf.php";
/*echo $to_name;
exit();*/
$sqls="select * from adv_data where id='$to_name' or class_='$to_name' or fname='$to_name'";
/*echo $sqls;
exit();*/
$db_query = mysql_query($sqls);
$num = mysql_num_rows($db_query);
/*echo $num;*/
/*exit();*/
/*$num=1;*/
if($num>0){
$sql="insert into $tb_consul value('','$fname','$to_name','$head','$detail','$date','$active')";
/*echo $sql;
exit();*/
$result=mysql_db_query($db,$sql);
/*if($db_query){
echo "<script language='javascript'>window.opener.location.reload();window.close();</script>";
}
*/
echo "<h3> บันทึกคำตอบเรียบร้อยแล้ว</h3>";
//echo "<meta http-equiv='Refresh' content='3; url=index.php?id=$id'>";
//echo "<a href = 'show_views.php?id=$id'>>>คลิก<<</a><br><br>";
}else{
echo "<h3>ไม่สามารถตั้งคำถามในกระทู้ ถาม - ตอบได้ </h3>";
}
?>
</div>
|
|
|
|
|
Date :
2011-09-22 14:38:40 |
By :
panghom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (C#)
<?
include "../include/conf.php";
//$sql="Select * From $tb";
//$db_query=mysql_db_query($db,$sql);
//$num_rows=mysql_num_rows($db_query); /* นับ Reccord ที่พบ */
mysql_query("USE $db;");
//หาจำนวนเรคอร์ดในเทเบิล โดยเก็บไว้ในตัวแปร $totalrecord
$id_st=$_SESSION['id_a'];
$fname=$_SESSION['fname'];
$class=$_SESSION['class_'];
/*$sqls="select id_st from consul where id_st='$id_st' or id_st='$fname' or id_st='$class'";
echo $sqls;
exit();
$db_query = mysql_query($sqls);
$num = mysql_num_rows($db_query);*/
/*if ($num > 0){*/
$result = mysql_query("select id_st from consul where id_st='$id_st' or id_st='$fname' or id_st='$class';");
/*echo $result;
exit();*/
$totalrecord = mysql_num_rows($result);
$pagesize = 10; //กำหนดจำนวนเรคอร์ดที่ต้องการแสดงผลใน 1 หน้า
/* คำนวณจำนวนหน้าที่ต้องใช้ในการแสดงผลเรคอร์ดทั้งหมด โดยเก็บไว้ในตัวแปร
$totalpage (ในที่นี้เรา cast ให้เป็นจำนวนเต็ม ดังนั้นเศษจะถูกตัดทิ้งไป) */
$totalpage = (int) ($totalrecord / $pagesize);
//กรณีที่หารไม่ลงตัว ให้นำ $totalpage มาบวก 1 จึงจะได้จำนวนหน้าที่ถูกต้อง
if (($totalrecord % $pagesize) != 0) {
$totalpage += 1;
}
/* $pageid คือตัวแปรที่จะถูกส่งผ่านมาทาง query string เมื่อผู้ใช้คลิกไฮเปอร์ลิงค์
เพื่อเลือกดูหน้าที่ต้องการ */
if (isset($pageid)) {
//คำนวณหาหมายเลขเรคอร์ดแรกที่เราจะเลือกมา
$start = $pagesize * ($pageid - 1);
}
else {
$pageid = 1;
$start = 0;
}
$sql = "select * from consul where id_st='$id_st' or id_st='$fname' or id_st='$class' ORDER BY id DESC LIMIT $start, $pagesize;";
$result = mysql_query($sql);
while ($dbarr = mysql_fetch_array($result)) {
$id=$dbarr[id];
$id_ad=$dbarr[id_ad];
$id_st=$dbarr[id_st];
$head=$dbarr[head];
$detail=$dbarr[detail];
$day=$dbarr[day];
$email=$dbarr[email];
if (($_SESSION['id_a']==$id_st) or ($_SESSION['class_']==$class)){
?>
<table width="99%" border="0" align="center">
<tr>
<td width="54%"><a href="javascript:void(0)" class="newsfont4" onClick="window.open('show_con.php?id=<? echo"$id"; ?>','','scrollbars=yes,width=500,height=300')"><? echo wordwrap($head, 180,"<br/>",true); ?></a></td>
<td width="22%" height="12"><div align="left"><? echo"$id_ad";?></div>
<div align="center"></div></td>
<td width="14%"><? echo"$day";?></td>
<td width="5%"> </td>
<td width="5%"><div align="center" class="style5 style8" >
<div align="right"><a href="del.php?id=<? echo "$id";?>"><img src="../images/x.jpg" width="19" height="19" border="0"></div>
</div>
<div align="right"></div></td>
</tr>
<tr>
<td height="17" colspan="5"><div align="center">---------------------------------------------------------------------------------------------------------------</div></td>
</tr>
</table>
<?
}else{
}
//$a++; style="table-layout:fixed;width:720px;"
}
mysql_close();
?>
<p class="style10"> </p></td>
</tr>
</table>
<div align="right">
<?
for ($i=1; $i<=$totalpage; $i++) {
if ($i == $pageid) {
echo $i . " ";
}
else {
echo "[<a href=\"showmsg_user.php?pageid=$i\">$i</a>] ";
}
}
?>
|
|
|
|
|
Date :
2011-09-22 14:43:36 |
By :
panghom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
showmsg_user.php
Code (C#)
<?
include "../include/conf.php";
//$sql="Select * From $tb";
//$db_query=mysql_db_query($db,$sql);
//$num_rows=mysql_num_rows($db_query); /* นับ Reccord ที่พบ */
mysql_query("USE $db;");
//หาจำนวนเรคอร์ดในเทเบิล โดยเก็บไว้ในตัวแปร $totalrecord
$id_st=$_SESSION['id_a'];
$fname=$_SESSION['fname'];
$class=$_SESSION['class_'];
/*$sqls="select id_st from consul where id_st='$id_st' or id_st='$fname' or id_st='$class'";
echo $sqls;
exit();
$db_query = mysql_query($sqls);
$num = mysql_num_rows($db_query);*/
/*if ($num > 0){*/
$result = mysql_query("select id_st from consul where id_st='$id_st' or id_st='$fname' or id_st='$class';");
/*echo $result;
exit();*/
$totalrecord = mysql_num_rows($result);
$pagesize = 10; //กำหนดจำนวนเรคอร์ดที่ต้องการแสดงผลใน 1 หน้า
/* คำนวณจำนวนหน้าที่ต้องใช้ในการแสดงผลเรคอร์ดทั้งหมด โดยเก็บไว้ในตัวแปร
$totalpage (ในที่นี้เรา cast ให้เป็นจำนวนเต็ม ดังนั้นเศษจะถูกตัดทิ้งไป) */
$totalpage = (int) ($totalrecord / $pagesize);
//กรณีที่หารไม่ลงตัว ให้นำ $totalpage มาบวก 1 จึงจะได้จำนวนหน้าที่ถูกต้อง
if (($totalrecord % $pagesize) != 0) {
$totalpage += 1;
}
/* $pageid คือตัวแปรที่จะถูกส่งผ่านมาทาง query string เมื่อผู้ใช้คลิกไฮเปอร์ลิงค์
เพื่อเลือกดูหน้าที่ต้องการ */
if (isset($pageid)) {
//คำนวณหาหมายเลขเรคอร์ดแรกที่เราจะเลือกมา
$start = $pagesize * ($pageid - 1);
}
else {
$pageid = 1;
$start = 0;
}
$sql = "select * from consul where id_st='$id_st' or id_st='$fname' or id_st='$class' ORDER BY id DESC LIMIT $start, $pagesize;";
$result = mysql_query($sql);
while ($dbarr = mysql_fetch_array($result)) {
$id=$dbarr[id];
$id_ad=$dbarr[id_ad];
$id_st=$dbarr[id_st];
$head=$dbarr[head];
$detail=$dbarr[detail];
$day=$dbarr[day];
$email=$dbarr[email];
if (($_SESSION['id_a']==$id_st) or ($_SESSION['class_']==$class)){
?>
<table width="99%" border="0" align="center">
<tr>
<td width="54%"><a href="javascript:void(0)" class="newsfont4" onClick="window.open('show_con.php?id=<? echo"$id"; ?>','','scrollbars=yes,width=500,height=300')"><? echo wordwrap($head, 180,"<br/>",true); ?></a></td>
<td width="22%" height="12"><div align="left"><? echo"$id_ad";?></div>
<div align="center"></div></td>
<td width="14%"><? echo"$day";?></td>
<td width="5%"> </td>
<td width="5%"><div align="center" class="style5 style8" >
<div align="right"><a href="del.php?id=<? echo "$id";?>"><img src="../images/x.jpg" width="19" height="19" border="0"></div>
</div>
<div align="right"></div></td>
</tr>
<tr>
<td height="17" colspan="5"><div align="center">---------------------------------------------------------------------------------------------------------------</div></td>
</tr>
</table>
<?
}else{
}
//$a++; style="table-layout:fixed;width:720px;"
}
mysql_close();
?>
|
|
|
|
|
Date :
2011-09-22 14:45:15 |
By :
panghom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยหน่อยนะคร่าต้องรีบส่งแล้ว
|
|
|
|
|
Date :
2011-09-22 14:47:36 |
By :
panghom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รู้ว่ารีบครับ รบกวนอ่านกระทู้นี้สักหน่อยนะครับ
วิธีการตั้งคำถาม
|
ประวัติการแก้ไข 2011-09-22 16:39:34
|
|
|
|
Date :
2011-09-22 16:38:26 |
By :
adaaugusta |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|