Home > Backend Development > PHP Tutorial > php 如何像form一样post一个表单

php 如何像form一样post一个表单

WBOY
Release: 2016-06-06 20:06:53
Original
995 people have browsed it

如何用PHP实现浏览提交表单这个动作,要跳到提交的页面去。

现在是调用一个支付接口,POST数据过去,接口检测出现余额不足,就会跳转到充值,充值完整后,会继续向下走。所以跳转是肯定的,不要问我接口合不合理,这是别人的接口。我的问题是

不用HTML,PHP能不能像html表单那样提交,
有回答说CURL,CURL POST 能跳转不?

回复内容:

如何用PHP实现浏览提交表单这个动作,要跳到提交的页面去。

现在是调用一个支付接口,POST数据过去,接口检测出现余额不足,就会跳转到充值,充值完整后,会继续向下走。所以跳转是肯定的,不要问我接口合不合理,这是别人的接口。我的问题是

不用HTML,PHP能不能像html表单那样提交,
有回答说CURL,CURL POST 能跳转不?

你是问表单提交了之后的确认界面吗

和正常的form表单一样呀,只是判断的语句不一样喽

创建CURL请求到POST地址就行了

你说跳转是属于建立请求后发送,而CURL就是直接做了这一步,等于做了跳转

用CURL请求第一个接口 根据接口返回的不用结果 用header()函数跳转到对应的URL就行了
楼主应该早点描述清楚你的问题

http://php.net/manual/en/book.curl.php

Related labels:
php
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