Greetings!
I have a php page where I need to redirect the request but for this i need a script loaded first..
Something like:
and later...
How is this possible when PHP demands the redirect code BEFORE any header?
I have a php page where I need to redirect the request but for this i need a script loaded first..
Something like:
Code:
<script language="JavaScript">
function StatusChange(text) {window.status = text; window.status = ''}
</script>
Code:
header("Location: JavaScript: StatusChange ('screen')");
Comment