Redirect without meta tag

wjh2303

New Member
Messages
139
Reaction score
0
Points
0
I have a page which i would like to redirect to another after a small amount of time.

So i went into google and came up with the meta refresh tag in the head section.

However i use php include to put a header and footer on every page, including the head section in the header file, so id rather not have to use a meta tag in the head, is there another way of redirecting within the body?

thanks

w
 

mfurqanabid

New Member
Messages
37
Reaction score
0
Points
0
Use javascripts for redirection.

Code:
<script language="javascript">
window.location = "filename.html";
</script>
 
Top