Advertisement
TheBiagio1996

$_POST vs $_GET

Nov 13th, 2015
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.14 KB | None | 0 0
  1. if(isset($_POST['id'])){
  2.     echo $_POST['id'] .' Variabile con POST';
  3. }
  4. if(isset($_GET['id'])){
  5.     echo $_GET['id'] .' Variabile con GET';
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement