Skip to content

Instantly share code, notes, and snippets.

@fabiancarlos
Created May 25, 2012 23:07
Show Gist options
  • Save fabiancarlos/2791118 to your computer and use it in GitHub Desktop.
Save fabiancarlos/2791118 to your computer and use it in GitHub Desktop.
exemplo enviar via get
<a href="teste.php?resposta=sim" >REPOSTA GET</a>
<?php
$resposta_get = $_GET['resposta'] ? $_GET['resposta'] : 'SEM PARAMETRO NA URL';
echo $reposta_get;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment