I already have the following extern.php file:
Code: Select all
<?php
if (!empty($_GET['catre'])) {
$catre = $_GET['catre'];
} else {
$catre = "null";
}
if ($catre != "null") {
header("Location:http://$catre");
} else {
echo "Dump!";
}
?>Hope this isn't too much but I didn't figured it by myself. Thanks in advance for bothering