thorpe wrote:What is this?
Redirect:("$URL");
Do you have a function defined called Redirect() ? Why the colon? Why the quotes? If this really is a call to a function it should look like...
Redirect($URL);
Maybe if you showed us the code for Redirect() aswell?
The
Redirect:("$URL");
was a piece I stole off of the official php website. The original redirect code (not from offical website) that I was using as an example was.
<?php
$URL="http://www.example.com";
header ("Location: $URL");
?>
However, this did not work due to the header being sent to the client, so there is no code for the redirect.