You could allways call a javascript when you submit the form. the javascript
could look something like this for calling two frames:

function loadFrames(form,frame1,page1,frame2,page2) {
     var query = "?name=" + form.field1.value + "&email=" +
form.field2.value;
     eval(\"parent.\"+frame1+\".location='\"+page1+query\"'\");
     eval(\"parent.\"+frame2+\".location='\"+page2+query\"'\");
}

Not too sure about the syntax though...


: bobo : www.elstudion.com/bobo : www.elstudion.com :


----- Original Message -----
From: "Wade" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 28, 2003 9:52 PM
Subject: [PHP-WIN] Is this possible


> 01282003 1248 CST
>
> Is this even possible.
>
> You create a page with two text fields= Name and Email and a submit
button.
>
> In the
>
> <form action="https://www.whatever.com"; method="post">
>
> can you submit this to Two different locations like
>
> <form action="https://www.whateverA.com";
action="https://www.whateverB.com";
> method="post">
>
>
> Is that even possible?
>
> Wade
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to