Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: redirect a php page
Stephen V wrote:
[....]
> //it's here I would do this:
>
> If (oci_execute($stmt)){
>
> oci_free_statement($stmt);
> print "add_task.php?request_name=$req_name";
> //header("http://127.0.0.1/add_task.php?request_name=$req_name");
> };
>
header ("location: http://...");
[...]
Received on Sun Apr 02 2006 - 07:52:40 CDT