NaniG Posted July 10, 2013 Share Posted July 10, 2013 Hi to all, Am developing a Online Test Quiz Portal. My Question is : When the user clicks on next button ( very first time ), how can i get the next question which is to be not in previous question id in the present question id. Here is the mySQL select statement... select * from questions where TESTTOPIC_ID in (1, 5) and QSTATUS = 'Enable' and QID NOT IN ('10') order by rand() limit 0,1; Here suppose TestTopic Id 1 -> PHP 5 -> CSS QID Question ID When i run above script it will shows only one record. it is fine. But how can i add the previous question id into an array (in QID) to cross check whether the question is already shown in the list. Please help me out. Link to comment https://forums.phpfreaks.com/topic/280021-click-next-button-to-get-the-new-mysql-record/ Share on other sites More sharing options...
cyberRobot Posted July 10, 2013 Share Posted July 10, 2013 The previously shown question IDs could be stored in a session variable. More information about sessions can be found here: http://www.php.net/manual/en/book.session.php Link to comment https://forums.phpfreaks.com/topic/280021-click-next-button-to-get-the-new-mysql-record/#findComment-1440146 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.