Posted by Erwin Moller on 06/06/07 15:47
vinnie wrote:
> how do i tell PHP that once the user has clicked the submit button,
> the web browser must take him to a specific site?
>
> for example: www.xxxyyy.com --> once submitted the form, take the
> customer to www.kkk.org
>
> Thank
Hi,
<?php
// do your formprocessing here, when finished:
header ("Location: http://www.kkk.org");
exit;
?>
Regards,
Erwin Moller
[Back to original message]
|