Guest User

Untitled

a guest
Oct 23rd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2.  
  3.    session_start();
  4.  
  5.    $q = array(
  6.       "What colour is blue?",
  7.       "What colour is red?"
  8.    );
  9.  
  10.    $a = array(
  11.      "Blue",
  12.      "Red"
  13.    );
  14.  
  15.    $random = rand(0, count($q) - 1);
  16.    $_SESSION["question"] = $q[$random];
  17.    $_SESSION["answer"] = $a[$random];
  18.  
  19.    echo $_SESSION["question"];
  20.  
  21.  
  22. ?>
Add Comment
Please, Sign In to add comment