I have problem in redirecting my url.
I have url:-
http://example.com/r/index.php?id=1234
it gives me value of url from database.I store the value of url in $url_link.
On the same page,after db operation.I add the redirect code in body part.
<?php
header('Location: http://$url_link');
?>
which doesnt take the value $url_link.