>i cannot use header because the headers are already sent. 

You can use content buffering
look at 
ob_start()


with that, you can print or echo whatever you want
and, at the middle or end  of the script
you can send any header you like because
in fact you have not send any data to the browser 

until you send
ob_flush(),





-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to