まず、*.php に送信する変数 witch の値を取得する必要があります。次の方法でそれを行うことができます。
var value = document.getElementById("someID").value;
またはjQueryの方法:
var value = $("#someID").val();
次に、変数を ajax リクエストに追加する必要があります。
ajaxRequest.open("GET", "../../ajaxphp.php?variable="+value, true);
//The last argument in this line (witch is set a "true") want to say, that is a asynchronous request
ajaxRequest.send(null);
//null want to say, that you not sending any parameter, really is automatically sent in the first line of code
次に、コード内の変数の値を取得すると *. php では、次のことができます。
<?php
$myVariable = $_GET["variable"];
echo $myVariable;
?>
またはこのように:
<?
$myVariable = $_REQUEST["variable"];
echo $$myVariable;
?>