|
|
|
รบกวนผู้รู้ ช่วยชี้อนะด้วย ผม งมมาหลายวันแล้ว -..- ทดสอบแล้ว SQL แสดงผลถ้า เอาวันที่ไปใส่เลยโดยตรง |
|
|
|
|
|
|
|
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script language="JavaScript" src="date-picker.js"></script>
<?php require_once('../Connections/gift.php'); ?>
<?php
//list($d,$m,$y)=explode("-",$textfield11);$y=$y-543;$field=$y."-".$m."-".$d;
//list($d2,$m2,$y2)=explode("-",$textfield12);$y2=$y2-543;$field2=$y2."-".$m2."-".$d2;
$a11 = $_POST["textfield11"];
$a12 = $_POST["textfield12"];
//echo $a11;
//echo $a12;
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$currentPage = $_SERVER["PHP_SELF"];
$maxRows_Gee1_editg1 = 5;
$pageNum_Gee1_editg1 = 0;
if (isset($_GET['pageNum_Gee1_editg1'])) {
$pageNum_Gee1_editg1 = $_GET['pageNum_Gee1_editg1'];
}
$startRow_Gee1_editg1 = $pageNum_Gee1_editg1 * $maxRows_Gee1_editg1;
mysql_select_db($database_gift, $gift);
$query_Gee1_editg1 = "SELECT id, groupp, DATE, pax_2 FROM guide2 WHERE DATE between '$a11' AND '$a11' ";
$query_limit_Gee1_editg1 = sprintf("%s LIMIT %d, %d", $query_Gee1_editg1, $startRow_Gee1_editg1, $maxRows_Gee1_editg1);
$Gee1_editg1 = mysql_query($query_limit_Gee1_editg1, $gift) or die(mysql_error());
$row_Gee1_editg1 = mysql_fetch_assoc($Gee1_editg1);
if (isset($_GET['totalRows_Gee1_editg1'])) {
$totalRows_Gee1_editg1 = $_GET['totalRows_Gee1_editg1'];
} else {
$all_Gee1_editg1 = mysql_query($query_Gee1_editg1);
$totalRows_Gee1_editg1 = mysql_num_rows($all_Gee1_editg1);
}
$totalPages_Gee1_editg1 = ceil($totalRows_Gee1_editg1/$maxRows_Gee1_editg1)-1;
$queryString_Gee1_editg1 = "";
if (!empty($_SERVER['QUERY_STRING'])) {
$params = explode("&", $_SERVER['QUERY_STRING']);
$newParams = array();
foreach ($params as $param) {
if (stristr($param, "pageNum_Gee1_editg1") == false &&
stristr($param, "totalRows_Gee1_editg1") == false) {
array_push($newParams, $param);
}
}
if (count($newParams) != 0) {
$queryString_Gee1_editg1 = "&" . htmlentities(implode("&", $newParams));
}
}
$queryString_Gee1_editg1 = sprintf("&totalRows_Gee1_editg1=%d%s", $totalRows_Gee1_editg1, $queryString_Gee1_editg1);
?>
<!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" />
</head>
<body>
<form method="post" name="form1" id="form1">
<table align="center">
<tr valign="baseline">
<td> ระหว่างวันที่
<label for="s1"></label>
<input name="textfield11" type="text" id="textfield11" value="" onClick="javascript:show_calendar('form1.textfield11');" onMouseOver="window.status='ปฏิทิน';return true;" onMouseOut="window.status='';return true;" />
ถึง
<label for="s2"></label>
<input name="textfield12" type="text" id="textfield" value="" onClick="javascript:show_calendar('form1.textfield12');" onMouseOver="window.status='ปฏิทิน';return true;" onMouseOut="window.status='';return true;" />
<input type="submit" name="button2" id="button2" value="Search" /></td>
</tr>
</table>
</form>
<?
echo "Username: ".$_POST["textfield11"]."<br/>";
?>
<table border="1" align="center">
<tr>
<td width="137">id</td>
<td width="203">GROUP</td>
<td width="203">AGENT</td>
<td width="203">ADATEIN</td>
<td width="25">VIEW</td>
<td width="25">DELETE</td>
</tr>
<?php do { ?>
<tr>
<td><?php echo $row_Gee1_editg1['id']; ?></td>
<td><?php echo $row_Gee1_editg1['groupp']; ?></td>
<td><?php echo $row_Gee1_editg1['pax_1']; ?></td>
<td><?php echo $row_Gee1_editg1['DATE']; ?></td>
<td><?php echo "<a href=g1edit.php?id=".$row_Gee1_editg1['id'].">Click</a>"; ?></td>
<td><?php echo "<a href=deleteg1.php?id=".$row_Gee1_editg1['id'].">Click</a>"; ?></td>
</tr>
<?php } while ($row_Gee1_editg1 = mysql_fetch_assoc($Gee1_editg1)); ?>
</table>
<table border="0" align="center">
<tr>
<td><?php if ($pageNum_Gee1_editg1 > 0) { // Show if not first page ?>
<a href="<?php printf("%s?pageNum_Gee1_editg1=%d%s", $currentPage, 0, $queryString_Gee1_editg1); ?>">First</a>
<?php } // Show if not first page ?></td>
<td><?php if ($pageNum_Gee1_editg1 > 0) { // Show if not first page ?>
<a href="<?php printf("%s?pageNum_Gee1_editg1=%d%s", $currentPage, max(0, $pageNum_Gee1_editg1 - 1), $queryString_Gee1_editg1); ?>">Previous</a>
<?php } // Show if not first page ?></td>
<td><?php if ($pageNum_Gee1_editg1 < $totalPages_Gee1_editg1) { // Show if not last page ?>
<a href="<?php printf("%s?pageNum_Gee1_editg1=%d%s", $currentPage, min($totalPages_Gee1_editg1, $pageNum_Gee1_editg1 + 1), $queryString_Gee1_editg1); ?>">Next</a>
<?php } // Show if not last page ?></td>
<td><?php if ($pageNum_Gee1_editg1 < $totalPages_Gee1_editg1) { // Show if not last page ?>
<a href="<?php printf("%s?pageNum_Gee1_editg1=%d%s", $currentPage, $totalPages_Gee1_editg1, $queryString_Gee1_editg1); ?>">Last</a>
<?php } // Show if not last page ?></td>
</tr>
</table>
<p> </p>
</body>
</html>
<?php
mysql_free_result($Gee1_editg1);
?>
##################### ทดสอบแล้ว SQL แสดงผลถ้า เอาวันที่ไปใส่เลยโดยตรง
แต่ว่า หาก รับค่าจาก field แล้ว มัน ไม่แสดงว่า ไม่รุ็ผิดตรงไหน รบกวนด้วยครับ ขอบคุณล่วงหน้าครับ
Tag : PHP
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แทรก นิดหนึ่งนะครับ เป็นการ เลือก ระหว่าง วันที่ ครับ between
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เลือกระหว่างวันที่ใช้ >= , <= ก่อได้นะครับ
|
|
|
|
|
Date :
2012-05-31 13:58:41 |
By :
keng_ds |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือผมอยากให้แก้จุดผิดให้หน่อยนะครับ ไม่รุ้ว่าตรงไหน ขอบคุณครับ
|
|
|
|
|
Date :
2012-05-31 14:20:01 |
By :
test |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอามาสั้น ๆ ก็ได้ครับ ยาวเกิน
|
|
|
|
|
Date :
2012-06-03 19:36:43 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|