Search Result
Collapse
2 results in 0.0013 seconds.
Keywords
Members
Tags
-
Database with table naming issues
I am attempting to fix an old Quiz database that someone gave me. When someone takes a test, I want the test to pull 25 random questions. I built the query and used SELECT TOP 25. That works fine. The problem with the RND command is that the person built the table with a space in the name (Question Table). When I try to use the RND command I get an error. I made a copy of the table and renamed it, this allows the RND command to work fine. ... -
Using multiple buttons with PHP
I am currently trying to make a four question quiz. Each question is on a new page. There will be a previous button and a next button to take the user to the previous and next question respectively. There will also be a save button to save the current answer selected for the questions so far. Finally, I will have a submit button that will submit all the answers of the quiz and give back a score. I have to use these buttons, and I have to have my...