View Single Post
Old 07-20-2009, 06:11 AM   #2 (permalink)
Hightower
The Acquainted
 
Hightower's Avatar
 
Join Date: May 2009
Location: Durham, UK
Posts: 134
Thanks: 9
Hightower is on a distinguished road
Default

Quote:
Originally Posted by skp View Post
I just wanted to develop a web application - an online quiz, in which i need to fetch questions only once & display one at a time as the user clicks the NEXT button. But, in php ,i guess it is difficult to have the questions(data) stored & use it on the event basis(button click)(since its a mere script invocation). Whereas , in asp.net it is easily done, since the data fetched can be stored till the user ends appln. So can u suggest some ways to do it in php......? or asp.net is the only way...?
I would probably store the used questions in an array (the id of each question). This can then be easily checked to make sure the question is notused twice, and also can easily be used to recall all questions/answers at the end.
__________________
Hightower's Softpolio
Send a message via MSN to Hightower
Hightower is offline  
Reply With Quote
The Following User Says Thank You to Hightower For This Useful Post:
skp (07-20-2009)