Snaip3Rs Posted October 15, 2010 Report Share Posted October 15, 2010 Varat lūdzu palīdzēt atrast vai iedot test skriptu piemēram kur ir 30 jautājumi un katram jautājumam 3~5atbilžu varianti ko var izvēlēties un beigās var redzēt nepareizās atbildes! Quote Link to comment Share on other sites More sharing options...
Just_Learning Posted October 16, 2010 Report Share Posted October 16, 2010 <?php $atb1 = "a"; $atb2 = "b"; //saraksti 30 atbildes //te būs 30 jaut. $form = "<form action='' method='post'> Jautajums 1:<br> <input type='radio' name='jaut1' value='a'>a<br> <input type='radio' name='jaut1' value='b'>b<br> <input type='radio' name='jaut2' value='c'>c<br> Jautajums 2:<br> <input type='radio' name='jaut2' value='a'>a<br> <input type='radio' name='jaut2' value='b'>b<br> <input type='radio' name='jaut2' value='c'>c<br> <input type='submit' name='submit'> </form>"; //ja noklikšķina if(isset($_POST['submit'])){ if($_POST['jaut1'] != $atb1){ //kļūda pirmajā echo "False 1"; }else{ //pareiza atbilde echo "True 1"; } if($_POST['jaut2'] != $atb2){ echo "False 2"; }else{ echo "True 2"; } }else{ echo $form; } ?> Kaut kas uz šito pusi. Pagaidām ir uz diviem jautājumiem, bet sataisīt uz 30 nav problēmu. Quote Link to comment Share on other sites More sharing options...
Snaip3Rs Posted October 17, 2010 Author Report Share Posted October 17, 2010 Piemēram man ir kādi 2000jautājumu es gribu kaut ko līdzīgu cssd testam uztaisīt! jautājumu es izvadu kā bildi un atbilžu varianti ir jau value1 2 un 3 dažreiz pat 4. Ja saglabāju visu datubāzē kā man uzlikt lai viņš izvēlas sajauktā kārtībā un beigās izmet cik kļūdas kopā bija! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.