Forum Moderators: coopster
When I tried to use the header() function, I got this message "Cannot modify header information - headers already sent".
I tried the http_redirect() function & that didnt work either - I guess my webhost php installation doesnt support this. Any suggestions on how best to tackle this?
Thanks
Note: As of PHP 4, you can use output buffering to get around this problem, with the overhead of all of your output to the browser being buffered in the server until you send it. You can do this by calling ob_start() and ob_end_flush() in your script, or setting the output_buffering configuration directive on in your php.ini or server configuration files.
ob_start() [uk2.php.net]
ob_end_flush() [uk2.php.net]
Should be helpful to you.
dc