can i pass data to two scripts with one form?

A

Anonymous

Guest
Hi,

I have not heard of two actions in the same form... anyway, you can call the top page (the one that composes the frames) and this page can call the other two with some parameter indicating it comes from a post...

It's just an idea, must be refined... hope it helps...

Regards.
 
Just use target with the name of the chosen frame.
Example:
Code:
<?php

<form name="f" action="whatever" target="top_frame">
<input ... />
</form>

?>
You can also call for some JS function that will refresh the current Frame (frame where the form is) and POST the data in another Frame.
 
Back
Top