I am using the following code:
$page = $_GET['page'];
if($page == '132'){
header("Location : new.php");
}
else {
}
Now, when the URL is: index.php?page=132 I would expect the page to find the query string, see that it is 132 and redirect to the new.php, but it isn’t doing this.
Does anyone know why?
Change
to