smc Posted March 6, 2007 Share Posted March 6, 2007 Hello everyone, Basically I want to add code that will allow me to only fetch articles from the database that are only as old as 6 months ago. Unfortunatly I'm not really sure where to get started. I know my way around PHP so if you put me on the right track I should be good. Thanks!! Quote Link to comment https://forums.phpfreaks.com/topic/41531-solved-determining-date-passage/ Share on other sites More sharing options...
boo_lolly Posted March 6, 2007 Share Posted March 6, 2007 i'd start by adding a column to my database table that is used to store the date when the article was published/uploaded. Quote Link to comment https://forums.phpfreaks.com/topic/41531-solved-determining-date-passage/#findComment-201239 Share on other sites More sharing options...
smc Posted March 7, 2007 Author Share Posted March 7, 2007 That's already done but the question is how to tell if it's been 6 months Quote Link to comment https://forums.phpfreaks.com/topic/41531-solved-determining-date-passage/#findComment-201327 Share on other sites More sharing options...
redarrow Posted March 7, 2007 Share Posted March 7, 2007 if it in a timestamp method this should work <?php $months_ago=time()-15778463; $query="SELECT * from what_ever where your_date<$months_ago"; ?> Quote Link to comment https://forums.phpfreaks.com/topic/41531-solved-determining-date-passage/#findComment-201363 Share on other sites More sharing options...
akitchin Posted March 7, 2007 Share Posted March 7, 2007 i personally maintain the principle that one should use MySQL to its full advantage. that being said, you can simply run a query like so: SELECT stuff FROM table WHERE date_column >= DATE_SUB(NOW(), INTERVAL 6 MONTH) have a look at MySQL's built-in functions, they have a fair number of especially useful ones. Quote Link to comment https://forums.phpfreaks.com/topic/41531-solved-determining-date-passage/#findComment-201365 Share on other sites More sharing options...
redarrow Posted March 7, 2007 Share Posted March 7, 2007 http://www.phpfreaks.com/forums/index.php/topic,130186.0.html read this post for study reasons Quote Link to comment https://forums.phpfreaks.com/topic/41531-solved-determining-date-passage/#findComment-201383 Share on other sites More sharing options...
smc Posted March 7, 2007 Author Share Posted March 7, 2007 Excellent, perfect. Thanks for all your help Quote Link to comment https://forums.phpfreaks.com/topic/41531-solved-determining-date-passage/#findComment-201387 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.