How can I forward someone to an url... example.. in a function, a code that will make point the browser automatically to an address..
THanks
header("Location: http://www.yahoo.com");
Make sure that you don't have any output before that, otherwise it won't work.
Diego
When you use the location redirector, you should always include the exit command, ie:
<? header("Location: http://www.phpbuilder.com/"); exit; ?>