Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
Server side is not javascript.
Server side is php, asp, jsp or any other language interpreted on the server, opposed to javascript, which is a language executed into the client browser.
Server side language cannot interact on the page once loaded, and client side language cannot interact with the server.
Except by making new requests, but no db access, file reading nor writing...
If you want to do a server side redirect, you will need to know which language is supported by your host.
if it's php, a simple
PHP Code:
header('location:my_new_url.html'); exit();
will be enough
__________________
Only a biker knows why a dog sticks his head out the window.
Last edited by tripy; 10-03-2007 at 08:40 PM..
|