is there a way for redirecting to a new page after using any echo? header("Location: ") tag does not work after any echo!
Maybe you should assign whatever echo to a varible, in this case $message, then in the page it redirects to do:
if($message) { echo "$message"; }
why not use javascript?
<script language="Javascript"> document.location.href=url; </script>
Or use a META redirect tag that you generate. No JS needed
Thanks with javascript i resolve my problem, you are fantastic. bye