|
|
|
พี่ครับขออีกรอบนะครับเกี่ยวกับค้นหาที่จะเด้งไปอีกน้าอะครับ คือผมอยากให้มัน อะเลิท เวลาไม่ได้ใส่ข้อมูลอะครับ |
|
|
|
|
|
|
|
คือตอนนี้ค้นหาแล้วให้มันเด้งไปอีกหน้าทำได้แล้วนะครับ แต่ว่าเวลาที่ผมไม่ได้ใส่ข้อความค้นหาอะไรเลย มันก็ดันไปเด้งอีกหน้ามันก็แสดงข้อมูลมาหมดเลย คือผมอยากให้มัน อะเลิท เวลาที่เราไม่ได้ใส่ข้อมูลในช่องค้นหาอะครับ ต้องทำงัยหรอครับ อันนี้เป็น code ของผมนะครับ ช่วยดูให้ทีนะครับ
Code
<?php
session_start();
if (!isset($_SESSION[login])) {
header("Location: index.php");
exit;
}
?>
<script type="text/javascript" src="scripts/jquery-1.4.3.min.js"></script>
<script type="text/javascript" src="fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
<script type="text/javascript" src="fancybox/jquery.fancybox-1.3.4.pack.js"></script>
<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.4.css" media="screen" />
<script type="text/javascript">
$(document).ready(function() {
$('a[id^="add"]').fancybox({
'width' : '80%',
'height' : '107%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe',
onClosed : function() {
parent.location.reload(true);
}
});
$('a[id^="show_job"]').fancybox({
'width' : '100%',
'height' : '118%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe',
onClosed : function() {
}
});
$('a[id^="edit"]').fancybox({
'width' : '65%',
'height' : '90%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe',
onClosed : function() {
parent.location.reload(true);
}
});
/*
onStart : function() {
return window.confirm('Continue?');
},
onCancel : function() {
alert('Canceled!');
},
onComplete : function() {
alert('Completed!');
},
onCleanup : function() {
return window.confirm('Close?');
},
onClosed : function() {
alert('Closed!');
}
*/
});
</script>
<form name="frmSearch" method="get" action="show_act_job.php">
<TABLE width="730" border="0" cellpadding="0" cellspacing="0">
<BR> <TR align="right" valign="bottom">
<td width="775" align="right" >
กรุณากรอกรหัสใบงาน : <SELECT NAME="select" style="border:#000 solid;">
<? if($_GET["select"]=="s_sheet.id_job"){?>
<OPTION VALUE="s_sheet.id_job">รหัสใบงาน</OPTION>
<? } else { ?>
<OPTION VALUE="s_sheet.id_job" >รหัสใบงาน</OPTION>
<? } ?>
</SELECT>
<td width="17" ><?=$search;?></td>
<td width="162" ><input name="keyword" type="text" value="<?=$_GET["keyword"];?>" size="20" MAXLENGTH="10" /></td>
<td width="47"><INPUT TYPE="submit" value="ค้นหา"></TD>
</TR>
</TABLE>
</form>
<? $keyword = $_GET["keyword"];$select=$_GET["select"];?>
<?
REQUIRE ("connectdb.php");
$_SESSION["ss_pint"]=$_id=$_REQUEST['pint'];
if(!isset($start)){
$start = 0;
}
$limit=$_SESSION['limit'];
if($limit !=""){
$limit = $limit;
} else { $limit=30; }
$sql_total="SELECT
s_act_work.id_act_work,
s_sheet.id_job,
s_engineer.en_name,
s_act_work.job_detail,
s_act_work.date_works,
s_status_product.icon,
s_status_product.name_status_product
FROM
s_act_work
Inner Join s_sheet ON s_sheet.id_job = s_act_work.id_job
Inner Join s_engineer ON s_engineer.en_code = s_act_work.en_code
Inner Join s_repairing_product ON s_repairing_product.number_repairing_product = s_sheet.number_repairing_product
Inner Join s_status_product ON s_status_product.id_status_product = s_repairing_product.id_status_product
";
if($select) { $sql_total .= " and $select like '%$keyword%'"; }
$result_total=mysql_query($sql_total)or die(mysql_error());
$total = mysql_num_rows($result_total);
$sql_show=$sql_total;
$sql_show.=" ORDER BY id_act_work LIMIT $start,$limit";
$result_show=mysql_query($sql_show)or die(mysql_error());
$totalp = mysql_num_rows($result_show);
if($total==0)
{
echo "<script language='javascript'>alert(' ไม่พบข้อมูล !! ');history.back();</script> ";
}
while($row_show=mysql_fetch_array($result_show))
{
?>
<?}?>
Tag : PHP
|
|
|
|
|
|
Date :
2012-05-02 15:21:23 |
By :
น้ำจัEฅu |
View :
1265 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
check ค่าว่าง ก่อนสิครับ
|
|
|
|
|
Date :
2012-05-02 15:49:39 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|