karlokokkak

Untitled

Apr 4th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. if (isset($_POST['variable']))
  2. {
  3.     echo($_POST['variable']);
  4. }
  5. else if(isset($_GET['variable'])) {
  6.     echo($_GET['variable']);
  7. }
  8. else
  9. {
  10.    echo ("failure");
  11. }
Advertisement
Add Comment
Please, Sign In to add comment