javascriptで(他のイベントに割り当てることができるように関数を作成しています)
//jQuery has to be included, and so if it's not,
//I'm going to load it for you from the CDN,
//but you should load this by default in your page using a script tag, like this:
//<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
window.jQuery || document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"><\/script>')
function sendValueGet(passedValue){
jQuery.get('test.php', { value: passedValue });
}
function sendValuePost(passedValue){
jQuery.post('test.php', { value: passedValue });
}
そしてあなたのPHPで:
<?php
if( $_REQUEST["value"] )
{
$value = $_REQUEST['value'];
echo "Received ". $value;
}
?>
javascriptの「object」{ value: ... }
とPHPの「REQUEST」変数で「value」を使用していることに注意してください$_REQUEST["value"]
別の参照名を付けたい場合は、両方の場所で変更する必要があります。
GETまたはPOSTの使用が好みです。