Results 1 to 4 of 4
-
17th Feb 2012, 02:15 AM #1OPMemberWebsite's:
heroturko.biz softpk.com gfxtra.biz hotfilegfx.comI Need Script PHP and SQL
Dear friends,
I need a script that will display 2 days before the expiry date record.
For Example My DB:
Date | Client | Product | Expiry Date | Amount
Thank Yousoftpk Reviewed by softpk on . I Need Script PHP and SQL Dear friends, I need a script that will display 2 days before the expiry date record. For Example My DB: Date | Client | Product | Expiry Date | Amount Thank You Rating: 5
-
17th Feb 2012, 03:06 PM #2Respected Member
Try this. expiry date is the date created by time() in php.
If it is a standard date try this where :
PHP Code:where datediff(curdate(),expiry_date)=2
PHP Code:<?php
// Make a MySQL Connection
mysql_connect("localhost", "admin", "1admin") or die(mysql_error());
mysql_select_db("test") or die(mysql_error());
// Get all the data from the "example" table
$result = mysql_query("SELECT * FROM example where datediff(curdate(),from_unixtime(expiry_date))=2 ")
or die(mysql_error());
echo "<table border='1'>";
echo "<tr> <th>date</th> <th>client</th><th>product</th> <th>expiry date</th><th>amount</th> </tr>";
// keeps getting the next row until there are no more to get
while($row = mysql_fetch_array( $result )) {
// Print out the contents of each row into a table
echo "<tr><td>";
echo $row['date'];
echo "</td><td>";
echo $row['client'];
echo "</td><td>";
echo $row['product'];
echo "</td><td>";
echo $row['expiry_date'];
echo "</td><td>";
echo $row['amount'];
echo "</td></tr>";
}
echo "</table>";
?>
-
17th Feb 2012, 03:23 PM #3MemberWebsite's:
rapidall.netThanx for share @Lock Down
-
17th Feb 2012, 07:14 PM #4Respected Member
You are welcome.
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
[Selling] Excellent Matrimonial Script| Complete readymade Matrimony Script Available
By matriscript4u in forum Marketplace (Buy, Sell and Trade)Replies: 0Last Post: 23rd Oct 2012, 02:54 PM -
[Selling] Mp3 Search Engine, File Host, SMS Script, Arcade Script, PDF Search Script, and More!
By Fileze in forum Completed TransactionsReplies: 12Last Post: 13th Mar 2012, 02:23 PM -
Greasemonkey script: Megaupload Premium Multifetch Script
By Dman in forum Webmaster ResourcesReplies: 46Last Post: 15th Dec 2011, 01:07 AM -
[Selling] Rslinkgens Premium link generator script V1 -Most advanced and viral script
By vccshopper in forum Completed TransactionsReplies: 0Last Post: 24th Jun 2011, 08:10 PM -
[Selling] A.A.S. (Adult Automated Script For ClipBucket Video Script)
By tangi in forum Completed TransactionsReplies: 0Last Post: 25th Mar 2011, 12:45 PM
themaRegister - register to forums...
Version 3.54 released. Open older version (or...