1 2 3 4 5 6 |
<?php /* Redirect browser */ header("Location: http://aq.gthex.co.uk:10000/newpage.php"); ?> |
header() must be called before any actual output is sent, or it will not work. No echos etc
1 2 3 4 5 6 |
<?php /* Redirect browser */ header("Location: http://aq.gthex.co.uk:10000/newpage.php"); ?> |
header() must be called before any actual output is sent, or it will not work. No echos etc
© 2022 CODEHAVEN