ユーザーがいくつかのオプションの $_GET データを入力するページがあります。AJAX を使用してこれらの $_GET 変数を .php スクリプトに渡したいと思います。しかし、私の問題は、ページを更新せずに、これまでに入力した $_GET 変数をどのように渡すかです。
これまでの私のコードは次のとおりです。
$.ajax({
type: "GET",
url: "serverside script to process on data",
data:{name:youwant}, // Here is where I want to take what the user has filled out so
// far, and place it here all without refreshing the page
success: function(data){
alert("return here if success")
}
})