Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Old 09-03-2005, 04:17 AM date sorting
Average Talker

Posts: 29
Trades: 0
hello,
I have table which collects download informations like download date time, email,name etc.
Now I want to sort records by date in asc as well as desc order. Also i want to remove hours from download date.
I used date format of php but it does not work.

pls. help.
rakesh.
chetanrakesh is offline
Reply With Quote
View Public Profile Visit chetanrakesh's homepage!
 
 
Register now for full access!
Old 09-03-2005, 09:46 AM
Republikin's Avatar
Defies a Status

Posts: 3,189
Trades: 3
Your existing code would be helpful.
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
Republikin is offline
Reply With Quote
View Public Profile
 
Old 09-04-2005, 09:09 AM
Skilled Talker

Posts: 62
Trades: 0
Select the datetime w/o hours through your query:

Code:
SELECT SUBSTR(date, 0, 10) as date_no_hours, ... (other fields) ... FROM download_table ORDER BY date;
Select the full datetime from your MySQL database and display w/o hours using PHP:

Code:
<?php
echo substr($query_result['date'], 0, 10);
?>
Or, if you want to get fancy and return the date in a more readable format for your users, take a look at the date() and mktime() functions
__________________

Please login or register to view this content. Registration is FREE
danlefree is offline
Reply With Quote
View Public Profile Visit danlefree's homepage!
 
Reply     « Reply to date sorting
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.21633 seconds with 12 queries