I have a link in a variable.... I want my page to redirect to this link.... how can I do this???
i.e.
<?php $page="http://www.google.com";
header("location:$page"); exit; ?>
<?php
/**
Place in a blank PHP page
*/
// Change to the URL you want to redirect to
$URL="http://www.example.com";
header ("Location: $URL");
?>
try URL instead maybe