Ask a Question related to PHP Development, Design and Development.
-
HTSoheili #1
<form> to multiple pages
I would like the following form to send to the https that is shown, but I
would also like it to send the same info to another page at the same time.
Another option would be to just go back one page and refresh, but I have not
been able to figure that out yet either.
<?
printf("
<form method=\"post\" target=\"_blank\"
action=\"https://www.asite.com/pagea.php\">
<input type=\"hidden\" name=\"2bpassed\" value=\"1\">
<input type=\"hidden\" name=\"2bpassed2\" value=\"1\">
<input type=\"submit\" value=\²send\²>
</form>
");
?>
How do I get the same data to be sent to [url]https://www.asite.com/pageb.php[/url]
with the same click of the send button?
Any ideas?
Thanks,
Tim
HTSoheili Guest
-
Same Link on Multiple Pages
I have a link to an excel spreadsheet that needs weekly updating. The same link is throughout my site... what is the best way to make this update... -
Splitting an ASP.NET Form on Multiple Pages
Hey, I am pretty new to web development and i am trying to create a form using ASP.NET that spans more than one page. The reason for this is the... -
update multiple records in multiple tables from one form
hello I have been trying to run multiple update queries based on the data entered by user. Brief background: I am fetching data from various... -
Help! - Passing form data between multiple pages
Hi, I am working on a multiple pages survey, right now if my user fill out page 1, click next, then fill out page2, page3, his answer will be... -
Remove form field duplicated across multiple pages
Can a (text) form field duplicated across multiple pages in Acrobat 6.0.1 be removed in a simple operation, or must the field be removed from each... -
Savut #2
Re: <form> to multiple pages
<form> to multiple pagesJavascript, give a name to your form first, then call this function when the person click submit
function submitTwice() {
document.myForm.submit();
document.myForm.submit();
}
Savut
"HTSoheili" <htsoheili@automatasystems.com> a écrit dans le message de news:BBFE1C22.2DAE%htsoheili@automatasystems.com.. .
I would like the following form to send to the https that is shown, but I would also like it to send the same info to another page at the same time. Another option would be to just go back one page and refresh, but I have not been able to figure that out yet either.
<?
printf("
<form method=\"post\" target=\"_blank\" action=\"https://www.asite.com/pagea.php\">
<input type=\"hidden\" name=\"2bpassed\" value=\"1\">
<input type=\"hidden\" name=\"2bpassed2\" value=\"1\">
<input type=\"submit\" value=\"send\">
</form>
");
?>
How do I get the same data to be sent to [url]https://www.asite.com/pageb.php[/url] with the same click of the send button?
Any ideas?
Thanks,
Tim
Savut Guest



Reply With Quote

