ajax 関数に 2 つのパラメーターを送信する必要があります。PHP ファイルの値を取得するにはどうすればよいですか? $comment=$_GET["comment"]; と書くだけです。しかし、これは書き込まれた値を送信しませんでした。
私のプロトタイプスクリプトは次のとおりです。
comment= $F('comment'); //text from textarea
name= $F('name'); // text from text box
var ajaxUrl = 'addcomment.php';
new Ajax.Request(ajaxUrl,
{
method:'post',
parameters: {comment: comment, name: name},
onSuccess: function(data){
alert(data.responseText);
}
});
php:
$comment=$_GET["comment"];