|
|
|
ส่งค่าตัวแปรผ่าน form ไม่ได้ค่ะติดมา 2 -3 วันแล้ว คือว่าหนูใช้โค้ดแบ่งหน้ากับการค้นหา |
|
|
|
|
|
|
|
คือว่าหนูใช้โค้ดแบ่งหน้ากับการค้นหา ดังนี้ค่ะ
Code (PHP)
/**********************ทำปุ่มค้นหา*****************************/
/***********************************/
<div id="apDiv24">
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<table width="250" border="0" align="center">
<tr>
<td width="73" >ค้นจาก:</td>
<td width="83" ><label>
<select name="section">
<option value="all">ตอนเรียน</option>
<?
$sql="select sec_name,sec_id from section where sec_status='1'
and section.sec_year='".$date."' ";
$result=mysql_query($sql,$conn);
while($row=mysql_fetch_array($result)){?>
<option value="<?=$row[1]?>" ><?=$row[0]?></option>
<? } unset($result);mysql_close($conn);?>
</select>
</label></td>
<td width="80"><input type="image" name="imageField" id="imageField"
src="../images/search.png" /></td>
</tr>
</table>
</form>
</div>
<div id="apDiv17">
<table width="520" border="0" align="center" cellspacing="0">
<?
include"../include/config.inc.php";
include"../include/date.php";
/***********************************************************************************************************/
$sql="select * from workshop where workshop_id='".$_REQUEST["ses_workID"]."' ";//ตรงนี้ค่ะที่ได้รับตัวแปรมาจากหน้าที่แล้ว พอกดค้นหา มันไม่มีข้อมูลตรงส่วนนี้ค่ะ
/*************************************************************************************************************/
$result=mysql_query($sql,$conn);
if($row=mysql_fetch_array($result,MYSQL_BOTH)){
?>
<tr align="left">
<td ><img src="../images/edit.png" alt="แก้ไข" width="80" height="19" border="0" /></td>
<td><img src="../images/del.png" alt="ลบ" width="80" height="19" border="0" /></td>
<td width="354"> </td>
</tr>
<tr>
<td colspan="2">ชื่อใบงาน :</td>
<td ><?=$row[1];?></td>
</tr>
<tr>
<td colspan="2">วันสิ้นสุดการส่ง :</td>
<td ><? date_thai($row[4]);?></td>
</tr>
<tr>
<td colspan="2">คำชี้แจง :</td>
<td><?=$row[2];?></td>
</tr>
<tr>
<td colspan="2"> ไฟล์ใบงาน :</td>
<td><a href="download_workshop.php?workshop=<?=$row[3];?>">Download !!</a></td>
</tr>
<tr>
<td colspan="2">สถานะการบ้าน :</td>
<td ><?
if($row["workshop_status"]==0){?><a href="javascript:if(confirm('ยืนยันการเปลี่ยนแปลง')){document.location='chang_status_workshop.php?work_id=<?=$row[2];?>&page=workshop_detail&work_id=<?=$row[0]?>';}"><? echo "ปิดใช้งาน";?></a> <? }
else { ?><a href="javascript:if(confirm('ยืนยันการการเปลี่ยนแปลง')){document.location='chang_status_workshop.php?work_id=<?=$row[2];?>&page=workshop_detail&work_id=<?=$row[0]?>';}"> <? echo "เปิดใช้งาน"; ?></a> <? } ?></td>
</tr>
<? } unset($result);
?>
</table>
</div>
/**********************เรียกฐานข้อมูลขึ้นมาดู*************************/
<div id="apDiv21">
<? include"chk_date.php";
if($_GET["section"] != "all")
{ $strSQL="select user_id,user_name,user_surname from user where sec_id='".
$_GET["section"]."' ";
}
if(($_GET["section"] == "all") || ($_GET["section"]=="" ))
{$strSQL="select user_id,user_name,user_surname from user ";
}
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 5; // Per Page
$Page = $_GET["Page"];
if(!$_GET["Page"])
{
$Page=1;
}
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
$strSQL .=" order by sec_id ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
if((mysql_num_rows($objQuery))!=0){?>
<table width="540" border="0" align="center" cellpadding="0" cellspacing="0">
<tr bgcolor="#FFFF99">
<th colspan="5">รายละเอียด</th>
</tr>
<tr bgcolor="#FFFFD2">
<th width="100">รหัสนักศึกษา</th>
<th width="125">ชื่อ - นามสกุล</th>
<th width="117">วันที่ส่ง</th>
<th width="79">ไฟล์</th>
<th width="119">สถานะการตรวจ</th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr bgcolor="#F8FEE2">
<td><?=$objResult[0]?></td>
<td><?=$objResult[1]?>-<?=$objResult[2]?></td>
<?
$sql="select sent_date,sent_file,sent_status,user_id,workshop_id
from sent_workshop where workshop_id='".$_SESSION["ses_workID"]."' and user_id ='".
$objResult[0]."' ";
$result=mysql_query($sql,$conn);
$n=mysql_num_rows($result);
if($n!=0){
if($row=mysql_fetch_array($result)){
?>
<td align='center'><?=date_thai($row[0]);?></td>
<td align='center'><a href='download_workshop.php?download_sent_workshop=<?=
$row[1];?>'><img src='../images/Pdf.png' alt='ไฟล์' border='0' /></a></td>
<td align='center'><? if($row[2]==0){?><a href="javascript:if(confirm('ยืนยันการ
ลบ')){document.location='chang_sent_status_workshop.php?work_id=<?=$row[4];?
>&page=workshop_detail&user_id=<?=$row[3];?>';}"><? echo "ยังไม่ตรวจ";?></a><? }else { echo
"ตรวจแล้ว";}?></td>
<? }unset($result); }else { ?>
<td align='center'>-</td>
<td align='center'>-</td>
<td align='center'>-</td>
<? }
?></tr><?
} unset($objQuery);?>
</table>
<?
echo "<center>";
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page§ion=$_GET
[section]'></a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i§ion=$_GET
[section]'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page§ion=$_GET
[section]'></a> ";
}
echo "</center>";
echo "<center><font color=red>/*หมายเหตุ : ระบบจะแสดงรายการข้อมูลนักศึกษาที่เรียนในปีล่าสุด*/</font></center>";
}else{echo "<center><font color=red>ยังไม่มีคนส่งใบงาน</font></center>";}?>
</div>
/***************************************/
คือพอดีว่าหนูจะต้องรับค่าตัวแปรจากหน้าที่แล้วเพื่อคิวรี่ดูว่ามีนักศึกษาคนใดบ้างที่จะส่งใบงานนั้นๆๆ(ในที่นี้ได้จาก $_REQUEST["work_id"])จากหน้าที่แล้วอ่ะค่ะ แล้วทีนี้พอกดปุ่มค้นหา มันจะไม่ขึ้นข้อมูลเนื่องจากว่าตัวแปร$_REQUEST["work_id"]) นี้ไม่มีค่าแล้ว พอเข้าใจมั้ยค่ะ หนุจะใส่ค่าตัวแปรไว้หลัง action="<?=$_SERVER['SCRIPT_NAME'];?>"> ข้างหลังนี้ ปรากฏว่าตัวแปรมันก้อไม่มีค่ะ
[email protected]
ช่วยหน่อยน่ะค่ะ ไม่รู้จะพึ่งใครแล้วค่ะ ขอบคุณมากค่ะ [/b][b][/b][b][b][/b][/i][i][marquee][/marquee]
Tag : - - - -
|
|
|
|
|
|
Date :
2010-01-24 18:46:44 |
By :
bigboomzuza |
View :
1544 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก่อนหน้าที่จะกดปุ่มค้นหา ค่า $_REQUEST["work_id"] ยังมีค่าอยู่รึป่าว
ลอง echo ออกมาดู ถ้ามีค่าก้อ กำหนดเป็นตัวแปร session ไปเลยก็ได้
เพราะถ้ามีค่ามาแล้วกดปุ่มค้นหา ค่า $_REQUEST["work_id"] จะหายไปไม่ตามไปด้วย
|
|
|
|
|
Date :
2010-01-24 20:52:41 |
By :
kennyg |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ค่ะ หนูเคยลองเก็บเป็น session แล้วค่ะ แต่มันก้อยังเก็บค่าตัวแปรเป็นตัวเดิมค่ะ เพราะว่า work_id นั้นมันมีหลายค่าค่ะ คือว่ามันมีหลายใบงานอ่ะค่ะ พอจะกดใบงานอันใหม่มันก้อยังติดเป็นตัวเดิมอ่ะค่ะ พอเข้าใจมั้ยค่ะ
|
|
|
|
|
Date :
2010-01-25 10:21:21 |
By :
bigboomzuza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ส่งค่าไปเป็น <input type='hidden'>
|
|
|
|
|
Date :
2010-01-25 10:25:45 |
By :
kennyg |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|