Guest User

Untitled

a guest
Jul 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. <div id="küsimus"><h2><p align="center">Kui suur oli Eesti Vabariigi eelarve aastal 2010?</p></h2>
  2.  
  3. <?php
  4. $p = $_GET['leht'];
  5.  
  6. if($p == "") {
  7.  
  8. echo '<form action="?leht=vastus" method="POST">
  9. <p align="center">
  10. <label>
  11. <input type="radio" name="kusimus" value="Radio1" />
  12. Radio1</label>
  13.  
  14. <label>
  15. <input type="radio" name="kusimus" value="Radio2"/>
  16. Radio2</label>
  17. <br />
  18. <label>
  19. <input type="radio" name="kusimus" value="Radio3" />
  20. Radio3</label>
  21. <label>
  22. <input type="radio" name="kusimus" value="Radio4" />
  23. Radio4</label>
  24. <br />
  25. <input type="submit" name="vasta" value="Vasta" />
  26. </p>
  27. </form>';
  28. }
  29. if($p == "vastus") {
  30.  
  31. $kusimus = $_POST['kusimus'];
  32. if($kusimus == "Radio2"){
  33. echo '<center>Vastasid küsimusele õieti!</center>';
  34. }
  35. if($kusimus == "Radio1"){
  36. echo '<center>Vastasid küsimusele valesti!</center>';
  37. }
  38. if($kusimus == "Radio3"){
  39. echo '<center>Vastasid küsimusele valesti!</center>';
  40. }
  41. if($kusimus == "Radio4"){
  42. echo '<center>Vastasid küsimusele valesti!</center>';
  43. }
  44. if($kusimus == ""){
  45. echo '<center>Palun vali vastus!</center>';
  46. }
  47. }
  48. ?>
  49. </div>
Add Comment
Please, Sign In to add comment