i know that this is how you redirect to a file on your website:
header("location: include/install.php");
but if i wanted to go to another website completely, how would i do that?
because when i try it like this:
header("location: http://www.google.com/");
it says:
Warning: Cannot modify header information - headers already sent by (output started at /www/locate1.php:9) in /www/locate1.php on line 10
and line 10 is that headers line that i made.
please Help!??