|
|
|
รบกวนผู้รู้ช่วยหน่อยค่ะ ต้องการดึงสินค้าที่มีอายุน้อยกว่ากว่า 90 วันมาโชว์ |
|
|
|
|
|
|
|
รบกวนหน่อยนะค่ะ
|
|
|
|
|
Date :
2012-02-29 18:13:50 |
By :
zamutu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำบน php ใช้ dateadd ได้ไม่ยากครับ
Code (PHP)
$date90 = date('Y-m-d',strtotime("-90 day"));
$sql = " SELECT * FROM table WHERE CreateDate < '".$date90."' ";
|
|
|
|
|
Date :
2012-03-01 08:54:31 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำบน SQL ครับ
Code (PHP)
$sql = " SELECT * FROM table WHERE CreateDate < DATE_ADD(NOW(),INTERVAL -90 DAY) ";
|
|
|
|
|
Date :
2012-03-01 08:55:37 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จะแทรก ยังไงค่ะ ช่วยหน่อยค่ะCode (PHP)
<?php
session_start();
if (!isset ($_SESSION['id_id']))
{
echo "<script> alert('กรุณาเข้าสู่ระบบ!!!'); window.location='../login.php'; </script>";
}
include("connect.php");
?>
<!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>
<LINK REL="SHORTCUT ICON" HREF="../img/5126050954_75749b9029.jpg">
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>nantawan</title>
<link href="../font/font.css" rel="stylesheet" type="text/css" />
<link href="../font/red.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
rr {
color: #F00;
}
body {
background-color: #818E98;
}
body,td,th {
color: #FFF;
}
-->
</style>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<table width="854" border="1" align="center">
<tr>
<td colspan="3"><? include("menu2.php")?></td>
</tr>
<tr>
<td width="165" valign="top"><? include("menu1.php"); ?></td>
<td width="564" valign="top"><table width="539" border="0" align="center" cellspacing="0">
<tr>
<td width="31" height="24" bgcolor="#666666"><div><img src="img/misc_i10.png" alt="" width="30" height="30" /></div></td>
<td width="386" height="24" bgcolor="#666666"><div class="font14สีแดงตัวหนา"> หนังใหม่ชนโรง</div></td>
<td width="116" height="24" align="right" bgcolor="#666666"><div class="font14สีแดงตัวหนา">ดูทั้งหมด +++ </div></td>
</tr>
<tr>
<td height="276" colspan="3" align="left" valign="top"><div>
<?
$strSQL = "SELECT * FROM movie";
$objQuery = mysql_query($strSQL);
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 6; // 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 mo_comming DESC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
echo"<table border=\"0\" cellspacing=\"1\" cellpadding=\"1\"><tr>";
$intRows = 0;
while($objResult = mysql_fetch_array($objQuery))
{
echo "<td>";
$intRows++;
?>
</div>
<div><img src="img/movie/<?=$objResult["mo_pic"];?>" alt="" width="196" height="109" border="2" /><br>
<a href="show_movie_detail.php?id=<?=$objResult['mo_id']?>&name=<?=$objResult['mo_name']?>"><?=$objResult["mo_name"];?>
...
<?
echo"</td>";
if(($intRows)%3==0)
{
echo"</tr>";
}
}
echo"</tr></table>";
?>
</div></td>
</tr>
<tr>
<td height="24" colspan="3" align="right"><span class="กดกก">
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page'><<</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a> ";
}
else
{
echo "<b> [ $i ]</b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page'>>></a> ";
}
?>
</span></td>
</tr>
<tr>
<td height="24" colspan="3"> </td>
</tr>
<tr>
<td height="24" bgcolor="#666666"><div><img src="img/misc_i10.png" alt="" width="30" height="30" /></div></td>
<td bgcolor="#666666"><div class="font14สีแดงตัวหนา"> หนังใหม่ชนโรง</div></td>
<td align="right" bgcolor="#666666"><div class="font14สีแดงตัวหนา">ดูทั้งหมด +++ </div></td>
</tr>
<tr>
<td height="24"> </td>
<td> </td>
<td> </td>
</tr>
</table></td>
<td width="259" align="center"> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</form>
</body>
</html>
|
|
|
|
|
Date :
2012-03-01 18:53:53 |
By :
zamutu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โดย หนูทำเกี่ยวกับหนัง
จะทำให้หนังที่มีอายุ ไม่เกิน 90 วัน เป็นหนังชนโรง
แต่ที่มากกว่านั้น จะเอาเป็นหนังเก่าไปแล้ว
และหนังที่กำลังจะเข้าเป็นหนัง โปรแกรมหนัง
โดย หน้า นี้ จะมี3 ส่วนคือ หนังชนโรง
หนังโปรแกรมหน้าและหนังที่ออกจากโรงไปแล้ว
อย่างเนี่ย ต้องแทรกลงตรงไหนค่ะ
ขอความกรุณาในการชี้แนะด้วยนะค่ะ
|
|
|
|
|
Date :
2012-03-01 19:04:49 |
By :
zamutu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตาม คห. 2 เลยครับ
ก็เอาไปแทรกตรงคำสั่ง select ไง
|
|
|
|
|
Date :
2012-03-01 21:38:14 |
By :
ozma |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2012-03-01 21:41:57 |
By :
pokgati |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณสำหรับคำแนะนำด้วยนะค่ะ
ตอนนี้ทำได้แล้วค่ะ
|
|
|
|
|
Date :
2012-03-01 22:23:01 |
By :
zamutu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|