0
changing order of a php echo
New Here
,
/t5/dreamweaver-discussions/changing-order-of-a-php-echo/td-p/637033
Mar 07, 2007
Mar 07, 2007
Copy link to clipboard
Copied
okay I've figured out to create a blog on my site but, the
date is showing oldest first. How can I change the order to Newest
firts?
I'm using a repeat region echoing info from a database.
Here is the code:
<?php $HTTP_POST_VARS[<?php echo $row_blog['BLOG_DATE']; ?>
any ideas?
I'm using a repeat region echoing info from a database.
Here is the code:
<?php $HTTP_POST_VARS[<?php echo $row_blog['BLOG_DATE']; ?>
any ideas?
TOPICS
Server side applications
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
LEGEND
,
/t5/dreamweaver-discussions/changing-order-of-a-php-echo/m-p/637034#M144188
Mar 07, 2007
Mar 07, 2007
Copy link to clipboard
Copied
Add to your SQL for the recordset
ORDER BY UNIX_TIMESTAMP(BLOG_DATE) DESC
--
Gareth
http://www.phploginsuite.co.uk/
PHP Login Suite V2 - 34 Server Behaviors to build a complete Login system.
ORDER BY UNIX_TIMESTAMP(BLOG_DATE) DESC
--
Gareth
http://www.phploginsuite.co.uk/
PHP Login Suite V2 - 34 Server Behaviors to build a complete Login system.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
LEGEND
,
LATEST
/t5/dreamweaver-discussions/changing-order-of-a-php-echo/m-p/637035#M144189
Mar 07, 2007
Mar 07, 2007
Copy link to clipboard
Copied
5jays wrote:
> okay I've figured out to create a blog on my site but, the date is showing
> oldest first. How can I change the order to Newest firts?
In the recordset dialog box, sort by BLOG_DATE, and set the sort order
to Descending.
--
David Powers, Adobe Community Expert
Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
Author, "PHP Solutions" (friends of ED)
http://foundationphp.com/
> okay I've figured out to create a blog on my site but, the date is showing
> oldest first. How can I change the order to Newest firts?
In the recordset dialog box, sort by BLOG_DATE, and set the sort order
to Descending.
--
David Powers, Adobe Community Expert
Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
Author, "PHP Solutions" (friends of ED)
http://foundationphp.com/
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

