Welcome to our forums...

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed.

Forum Statistics

  • Forum Members:
  • Total Threads:
  • Total Posts: 3
There are 1 users currently browsing forums.
PHP Scripting PHP is a scripting language for rapid web-development. It's a popular and powerful, OOP-capable language that is used by professionals. Discuss PHP here.

Reply
  #1  
Old 06-02-2009
hyp3R's Avatar
Heeeeeeeeeeeeeeeey!
 
Join Date: Apr 2006
Location: Brcko, Bosnia and Herzegovina
Age: 22
Posts: 523
Rep Power: 4
hyp3R is on a distinguished road
Quiz

So I wanna make a quiz with several questions and answers. Each time, script should randomly pick 1 questions with like 4 answers... Radio button should be next to each answer and submit button...

I've started it like this :

PHP Code:
<?php

$pitanja 
= array("Kad je rodjen hitler","Ko je predsednik francuske","Glavni grad Rusije","Koliko si glup","Imas li uopste mozga");

$i rand(0,count($pitanja)-1);

echo 
$pitanja[$i];


?>
What should I do ?
Reply With Quote
  #2  
Old 06-02-2009
darkecho's Avatar
official undercover guy
 
Join Date: Aug 2005
Location: Michigan... USA
Age: 21
Posts: 2,596
Rep Power: 7
darkecho is on a distinguished road
Re: Quiz

Where are you having an issue at? You have 1 array with questions (or answers)?
Reply With Quote
  #3  
Old 06-03-2009
hyp3R's Avatar
Heeeeeeeeeeeeeeeey!
 
Join Date: Apr 2006
Location: Brcko, Bosnia and Herzegovina
Age: 22
Posts: 523
Rep Power: 4
hyp3R is on a distinguished road
Re: Quiz

These are the questions. What I want is quiz with rand function so each time one question should be shown with several answers and next to each answer should be radio button and of course below should be submit button to submit your answer...
Reply With Quote


Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How Can I compile to programs in one? pandora C and C++ Programming 7 12-08-2006 05:06 PM
Make a Quiz with mySQL and PHP Umang PHP Articles 0 05-02-2006 09:05 AM
QUIZ! : 10 common pointer and memory allocation pitfalls in C and C++ hot_cakes Articles, Tutorials, and Guides 2 08-31-2005 12:15 PM
Help with Writing a VBA quiz in Powerpoint itsallpsych Visual Basic Programming 12 08-01-2005 11:37 PM