|
Posted by Johnny on 10/08/06 05:44
"jflash" <ki4hrg@gmail.com> wrote in message
news:1160278366.242621.316070@e3g2000cwe.googlegroups.com...
> On my website, I have a form where the user inputs information. The
> information is then posted using the file insert.php, then displayed
> using output.php. However, I would like to redirect the user from
> insert.php to output.php without them having to manually enter the new
> address. I have tried using JavaScript to no avail. Is there any way to
> do this?
>
so enter data on form, submit posts to insert.php which saves stuff and then
before any output to browser does a header redirect to output.php ?
<?php header("Location: http://www.example.com/output.php"); ?>
http://us3.php.net/manual/en/function.header.php
Navigation:
[Reply to this message]
|