怎么把同一表单中的内容提交到两个不同的页面中

WBOY
Release: 2016-06-13 10:23:21
Original
1071 people have browsed it

如何把同一表单中的内容提交到两个不同的页面中?
有一个表单,action="a.php",在这个表单中有一个input标签,想把它的value提交到b.php,该怎样实现?

------解决方案--------------------
ajax,自己把表单参数拼起来发给两个页面,
------解决方案--------------------
通过js修改action的值。
------解决方案--------------------
可以 向a.php提交成功后台,再向b.php发送input的值,b.php 获取就可以了
------解决方案--------------------
最简单的一个在form里提交,一个用js提交就可以了。
------解决方案--------------------
更簡單的是 a.php 和 b.php 合併一起
------解决方案--------------------
在a里面调用b的功能不就行了。
------解决方案--------------------
提交到一个界面,然后在判断进入a方法体或者b方法体
------解决方案--------------------

HTML code
<a href="b.php?%E5%8F%82%E6%95%B0=<?php%20echo%20%E5%8F%82%E6%95%B0;%20?>" target="_blank"></a><div class="clear">
                 
              
              
        
            </div>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template