POST到php并返回包含已发布数据的页面

时间:2012-07-24 00:29:31

标签: php post

我有一个download.php文件和一个index.php文件。我希望download.php将数据发布到index.php,然后在浏览器窗口中显示index.php,其中包含已发布的数据。这可能吗?我以为我可以使用卷曲,但这不起作用。请帮帮我。

2 个答案:

答案 0 :(得分:0)

您的代码出了什么问题?你可以使用Curl。

试试这个:http://www.askapache.com/php/sending-post-form-data-php-curl.html

答案 1 :(得分:0)

您可以使用jQuery.post()

执行此操作
//post the data
$.post('ajax/test.html',{ name: "test", time: "2pm" }, function(data) {

    //replace the .result div with the
    //response from the server
    $('.result').html(data);

});