hi… i want to say something like this…
if (something happenes){stay at page}else{move forward to another page}
how do i say move forward to another page?
hi… i want to say something like this…
if (something happenes){stay at page}else{move forward to another page}
how do i say move forward to another page?
has a header:
[php]<?php
header("location: http://domain.com’);
exit();
?>[/php]
you’ll need to make sure no output has been sent to the browser before using it.