plodos Posted August 30, 2008 Share Posted August 30, 2008 sql CREATE TABLE IF NOT EXISTS `person` ( `person_id` int(11) NOT NULL auto_increment, `title` varchar(20) NOT NULL, `fname` varchar(40) NOT NULL, `lname` varchar(40) NOT NULL, `email` varchar(128) NOT NULL, `date` datetime default NULL, PRIMARY KEY (`person_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ; php $data = mysql_query("select * from person where no='1' ORDER BY lname ASC LIMIT $start,$limit"); while($info=mysql_fetch_array($data)) { echo title_case($info['lname'])." ".title_case($info['fname'])." <br>"; } When user register the system, information must list after 10 hours.... I will control the record, delete/update like that in 10 hour....After the 10 hours registration, information must be listed... How can I do that??? Link to comment https://forums.phpfreaks.com/topic/121980-solved-mysql-datetime-how-to-subtruct-and-show-the-records/ Share on other sites More sharing options...
fenway Posted August 30, 2008 Share Posted August 30, 2008 Could you please post your solution for the benefit of others? Link to comment https://forums.phpfreaks.com/topic/121980-solved-mysql-datetime-how-to-subtruct-and-show-the-records/#findComment-629808 Share on other sites More sharing options...
plodos Posted August 30, 2008 Author Share Posted August 30, 2008 SELECT * FROM person WHERE no = '1' AND date < NOW() - INTERVAL 10 HOUR ORDER BY lname DESC LIMIT 0 , 30 Link to comment https://forums.phpfreaks.com/topic/121980-solved-mysql-datetime-how-to-subtruct-and-show-the-records/#findComment-629980 Share on other sites More sharing options...
fenway Posted August 31, 2008 Share Posted August 31, 2008 Apprecitaed. Link to comment https://forums.phpfreaks.com/topic/121980-solved-mysql-datetime-how-to-subtruct-and-show-the-records/#findComment-630487 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.