I've got one if, and one else in my script.
But I need something else for a $_GET statement so when people visit: URL.com/lol?code=23oojdosagodsj (or something like that) then I can do something inside (like an if, else).
if(isset($_GET['code']))
{
echo $_GET['code'];
}
I've tried that, but it just redirects me to the else statement which shows the form. I used: ?code=lol