How can I get a PHP function go to a specific website when it is done running?
For example:
Note that this will not work:
header('Location: $url');
You need to do this (for variable expansion):
header("Location: $url");