Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <title>Contagem regressiva</title>
  2. <?php
  3. if($_GET['t'] == '0'){
  4.     print "Tempo esgotado.";
  5. }else{
  6.     $t = $_GET['t'];
  7.     $t = $t-1;
  8.     print $t;
  9.     print "<meta HTTP-EQUIV='refresh' CONTENT='1;URL=test.php?t=". $t ."'>";
  10. }
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement