Hi all! I have a very simple question... I need a function to go to defined url address like this:
$url = "http://site.com";
function_go_to($url);
The onlyest function I know for that purpose is header("Location: http://site.com");, but it has to be put in the beggining in the script, which I can not do in my script, I need it in its last parts, after the $ul is already defined. Do you know any other function to go to url address, except header(), and how can I use it? 😕:queasy:
Thanks in advance.