search
Homephp教程php手册php如何跨域提交form表单?本文介绍2种方法

有时我们为了网站安全考虑,我们不允许直接跨域提交form表单数据,如果我们自己有这个需求呢?下面我们来介绍两种跨域的方法解决直接跨域问题.

下面我们来看看两种php跨域提交form的方法.

一,通过php curl

<?php
function curlPost($url,$params)   
{   
    $postData = &#39;&#39;;   
    foreach($params as $k => $v)   
    {   
        $postData .= $k . &#39;=&#39;.$v.&#39;&&#39;;   
    }   
    rtrim($postData, &#39;&&#39;);   
    $ch = curl_init();   
    curl_setopt($ch,CURLOPT_URL,$url);   
    curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);   
    curl_setopt($ch,CURLOPT_HEADER, false);   
    curl_setopt($ch, CURLOPT_POST, count($postData));   
    curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);    
    $output=curl_exec($ch);   
    curl_close($ch);   
    return $output;   
}   
echo curlPost("http://phprm.com",array(&#39;name&#39;=>"tank"));

 

以前很多人用curl来抓,邮箱的通讯录,不过现在已经不可以了,哈哈.

二,利用jquery form,ajax提交

1,下载jquery.form.js

2,js代码

$(&#39;#testform&#39;).submit(function() {   
    $(this).ajaxSubmit({   
    type: &#39;post&#39;, // 提交方式 get/post   
    dataType:"json",//数据类型   
    url: &#39;your url&#39;, // 需要提交的 url   
    success: function(data) { // data 保存提交后返回的数据,一般为 json 数据   
    // 此处可对 data 作相关处理   
    alert(&#39;提交成功!&#39;);   
    }   
    $(this).resetForm(); // 提交后重置表单   
    });   
    return false; // 阻止表单自动提交事件   
});

 

3,php代码

header("Access-Control-Allow-Origin:*"); //跨域权限设置,允许所有 
header("Access-Control-Allow-Origin:http://www.phprm.com"); //只允许test.com跨域提交数据


Statement
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),