Sending a link to the exit page by:
On going page is:
Problem is that $go can be changed via url and I don't know how to block it. Have tried some ideas but nothing.
Code:
/index.php?a=going&go=site.tld
PHP Code:
elseif ($a == 'going') {
$go = $_GET['go'];
if (!isset($go) or $go == '' ) { exit; }
header('Location: http://'.$go.'/');
exit;
}
Comment