Page 1 of 1

[PHP] $_GET && $_POST

Posted: Tue Jan 11, 2011 3:36 pm
by djand3y93
Hello.

Can someone make a tutorial with this 2 function and to explain better this expresion test.php?example=1

Thanks!

Re: [PHP] $_GET && $_POST

Posted: Tue Jan 11, 2011 9:22 pm
by Callan S.
with get, if you use that link then have this in your code

Code: Select all

if (isset($_GET['example'])) $dummyvalue=$_GET['example'];
You can find if someone used it and what value they put into it, if any.