download.php ファイルと index.php ファイルがあります。download.php にデータを index.php に投稿してから、投稿されたデータを含むブラウザー ウィンドウに index.php を表示します。これは可能ですか?これにはcurlを使用できると思っていましたが、うまくいきません。私を助けてください。
user1556495
質問する
159 次
2 に答える
0
コードで何が問題になっていますか? カールが使えます。
これを試してください:http://www.askapache.com/php/sending-post-form-data-php-curl.html
于 2012-07-24T00:33:57.493 に答える
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);
});
于 2012-07-24T00:41:48.813 に答える