ผมต้องการหา ว่าแต่ละเดือนมีข้อมูลอะไรบ้าง แต่ผมเก็บวันที่ ข้อมูลเป็นอยู่ในฟิวเดียวกัน ซึ่งเก็บเป็น varchar ชื่อ ฟิวชื่อ date 01/03/2551 ประมาณนี้อะคับ ซึ่งผมเขียนโค้ด
$sql = "select * From $tb where date between '$keyword' and '$keyword1'
<?
if (empty($keyword) and empty($keyword1))
{
echo"<b>กรุณากรอกวันที่</b>";
exit();
}
$host="localhost";
$username="";
$pass_word="";
$db="carrental";
$tb="tb_returncar";
mysql_connect( $host,$username,$pass_word) or die ("ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้");
$sql = "select * From $tb where date_return between '$keyword' and '$keyword1'";
if(($Page>$Num_Pages) || ($Page<0))
print "<center><b>จำนวน $Page มากกว่า $Num_Pages ยังไม่มีข้อความ<b></center>";
$sql = "select * From $tb where date_return between '$keyword' and '$keyword1' and overtime>0 or oil>0 order by id asc LIMIT $Page_start , $Per_Page";