Advertisement
Guest User

Untitled

a guest
Jul 20th, 2011
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. //index.php
  2. <?php
  3. $data = $_GET['artist']; //This makes a GET Variable,which will hold the "artist" value.
  4. switch($data) //Here we are going to check the "artist".
  5. {
  6. case 'eminem': //In case the "artist" is eminem
  7.     echo "Do you think eminem is in...?"; //Do this and that..blah
  8.     break;
  9.    
  10. case 'bieber': //In case the "artist" is bieber
  11.     echo "Do you think Justin Bieber is in...?";
  12.     break;
  13.  
  14. default: //If none "artist" is selected
  15.     echo "Please select an artist to vote!";
  16. }
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement