Hi,
I suppose Netscape to interpret this META tag only in the <head></head>. But as I want to use it to redirect the user after having signed in my guestbook, how do I get this stuff into the header (which is a template for the whole site) or can redirect him with an other method?
Here's the site: http://dog2001.tammen.net/dog2001.php3?view=guestadd
tia, jan
Try using:
<?php header("Location: yourpage.php?"); ?>
Ensure though that you do not send output (including whitespaces) to the browser before executing this line, otherwise you will get warnings.
Pete