ต้องการค้นหาข้อมูลจากวันที่ เพื่อดึงมาแสดงเพื่อที่จะออกเป็นรายงาน
แต่ว่าเขียนแล้วไม่รู้ติดตรงไหนค่ะ ไม่มีข้อมูลอะไรแสดงออกมาเลย
ช่วยดูให้หน่อยนะคะ
1.โค้ด form
<form name="frmSearch" method="get" >
<table width="599" border="1">
<tr>
<th>กรุณาเลือก
<input name="txtKeyword" type="date" id="txtKeyword" value="<?php echo $_GET["txtKeyword"];?>">
<input type="submit" value="Search"></th>
</tr>
</table>
</form>
<?php
if($_GET["txtKeyword"] = "")
{
include"connect.php";
$strSQL="SELECT * FROM time WHERE Time_In ='".$_GET['txtKeyword']."' ";
$objQuery = mysqli_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">เครื่องที่ </div></th>
<th width="198"> <div align="center">ราคา </div></th>
</tr>
<?php
while($objResult = mysqli_fetch_array($objQuery))
{
?>
<tr>
<td><?php echo $objResult["Time_No"];?></td>
<td><?php echo $objResult["Time_Price"];?></td>
</tr>
<?php
}
?>
</table>
<?php
mysqli_close($objConnect);
}
?>
2.หน้าform
3.DB
การ search วันที่ php เพื่ออกรายงาน
แต่ว่าเขียนแล้วไม่รู้ติดตรงไหนค่ะ ไม่มีข้อมูลอะไรแสดงออกมาเลย
ช่วยดูให้หน่อยนะคะ
1.โค้ด form
<form name="frmSearch" method="get" >
<table width="599" border="1">
<tr>
<th>กรุณาเลือก
<input name="txtKeyword" type="date" id="txtKeyword" value="<?php echo $_GET["txtKeyword"];?>">
<input type="submit" value="Search"></th>
</tr>
</table>
</form>
<?php
if($_GET["txtKeyword"] = "")
{
include"connect.php";
$strSQL="SELECT * FROM time WHERE Time_In ='".$_GET['txtKeyword']."' ";
$objQuery = mysqli_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">เครื่องที่ </div></th>
<th width="198"> <div align="center">ราคา </div></th>
</tr>
<?php
while($objResult = mysqli_fetch_array($objQuery))
{
?>
<tr>
<td><?php echo $objResult["Time_No"];?></td>
<td><?php echo $objResult["Time_Price"];?></td>
</tr>
<?php
}
?>
</table>
<?php
mysqli_close($objConnect);
}
?>
2.หน้าform
3.DB