Ask a Question related to Dreamweaver AppDev, Design and Development.
-
drewangell #1
Display Last 10 days worth of records
I've got a simple DB with requests table and a field called Shipped that is a
check box. Yes/no whether it's been shipped. I'd like to create a page which
shows me all shipped items for the last 10 days. I'm having trouble coming up
the SQL that it takes to do this though.
Any information would be greatly appreciated. Thanks!
Drew
drewangell Guest
-
#39560 [NEW]: Inconsistent behaviour of strtotime when days > days in month
From: php at colin dot guthr dot ie Operating system: Linux PHP version: 5.2.0 PHP Bug Type: Date/time related Bug... -
Records Display formatting
My query returns hundreds of records. I wish to display 25 each page with the usual menu at the bottom of the page to move forward into the... -
Display all records on a page?
This is the code I'm using to display records from an Access database in a random order. The problem is when the page is refreshed it doesn't... -
Display month and days with results
On 15 Aug 2003 14:28:56 -0700, sf@mnetsys.com (Steve Fitzgerald) wrote: i.e. Only print the month header when the month changes. $cur_month... -
When records don't display that are there
Hi All, Using Dreamweaver MX, Personal Web Server 4.0, VB Script, Asp Pages, MS Access Database, WIN 98 OS I basically have a Search Page with... -
darrel #2
Re: Display Last 10 days worth of records
> I've got a simple DB with requests table and a field called Shipped that
is awhich> check box. Yes/no whether it's been shipped. I'd like to create a pagecoming up> shows me all shipped items for the last 10 days. I'm having troubleSomething like:> the SQL that it takes to do this though.
SELECT items WHERE (shipped = true) AND (shipDate > (GETDATE ( ) - 10))
ORDER BY shipDate desc
Not sure if the mat equation will work within the SQL statement, you might
have to do that part outside of the SQL query.
-Darrel
darrel Guest



Reply With Quote

