利用PHP实现页面跳转与此同时POST传参,请路过大神指教

WBOY
Release: 2016-06-13 12:05:35
Original
919 people have browsed it

利用PHP实现页面跳转同时POST传参,请路过大神指教
我现在在我的网站新建一个控制器,写了一个方法A!
我在方法里面定义了一个数组,我想通过POST方式,把这个数组传递到另一个网站里面的一个控制器下的一个方法B,方法B接受到我提交的数据会把数据显示出来,所以,A方法传参的同时并跳转到B方法!
请教大神这个该怎么实现,不使用form表单提交!
------解决方案--------------------
sock、curl
------解决方案--------------------
curl
------解决方案--------------------
常用的cURL

<br />$ch = curl_init();<br /><br />$data = array('name' => 'Foo', 'age' => 25);<br /><br />curl_setopt($ch, CURLOPT_URL, 'http://localhost/test.php');<br />curl_setopt($ch, CURLOPT_POST, 1);<br />curl_setopt($ch, CURLOPT_POSTFIELDS, $data);<br /><br />curl_exec($ch);<br />
Copy after login

手册上有很多demo
------解决方案--------------------
你是要转到B方法呢?还是只调用B方法?如果是跳转,那直接表单Post过去就行了。如果只是调用,那用cUrl就行了。
------解决方案--------------------
你这不是还是FORM提交的么?
------解决方案--------------------
引用:
我搞定了,原来没有那么复杂,其实是我想复杂了,我用了一个比较笨的方法,希望路过的大神笑笑就算了O(∩_∩)O~
<br />echo "<form   style="max-width:90%" id='form1' name='form1' method='post' action='http://192.168.1.237:9990/index.php?c=api_userbind&m=Index'><br />			  <input name='qb_username' type='text' value='{$arr["qb_username"]}' /><br />			  <input name='service' type='text' value='{$arr["service"]}'/><br />			  <input name='require_time' type='text' value='{$arr["require_time"]}'/><br />			  <input name='callbackurl' type='text' value='{$arr["callbackurl"]}'/><br />			  <input name='sign' type='text' value='{$arr["sign"]}'/><br />			  <input name='partner_no' type='text' value='{$arr["partner_no"]}'/><br />			</form><br />			<script type='text/javascript'>function load_submit(){document.form1.submit()}load_submit();</script>";<br />
Copy after login


嘿嘿,楼主还是用from表单实现的啊

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