Created
May 25, 2012 23:07
-
-
Save fabiancarlos/2791118 to your computer and use it in GitHub Desktop.
exemplo enviar via get
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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