dimmuboy

Untitled

Dec 7th, 2011
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.79 KB | None | 0 0
  1. <?php
  2. if(!empty($_POST['time'])){
  3.         $time = $_POST['time'];
  4.         if ($time == 0){
  5.                 echo "000";
  6.         }
  7.         else if ($time == 1){
  8.                 echo "1111";
  9.         }
  10.         else if ($time == 2){
  11.                 echo "2222";
  12.         }else
  13.                 echo "CHYBA";
  14. }else{
  15.         ?>
  16.  
  17.                 <form method="post" action="picovina.php">
  18.                 <fieldset>
  19.  
  20.                 <label for="time">Čas:</label>
  21.                 <select name="time">
  22.                 <option value="1">Jeden</option>
  23.                 <option value="2">2</option>
  24.                 </select><br />
  25.  
  26.  
  27.                 <input type="submit" name="send" id="send" value="send" />
  28.                 </fieldset>
  29.                 </form>
  30.  
  31.                 <?php
  32. }
  33. ?>
  34.  
Advertisement
Add Comment
Please, Sign In to add comment