Jquery $.post を使用してページを更新せずにデータをチェックし、ページ div にエラーを出力するのに問題があります
ヘッダー (場所) を取得できません。すべてのデータが正しければ次のページへ。
<script type="text/javascript">
function get(){
$('#error').hide();
$.post('./parts/signup_data.php',
{firstname:signup.firstname.value, lastname:signup.lastname.value,
email:signup.email.value, re_email:signup.re_email.value,
password:signup.password.value, re_password:signup.re_password.value,
age:signup.age.value,
gender:$('input:radio[name=gender]:checked').val(),
},
function(output){$('#error').html(output).fadeIn(50);}
)
}
</script>
ページは更新せずにすべてのデータをチェックし、div タグのエラーを出力します
すべてのデータが正しい場合。データをDBに挿入します
mysql_query("INSERT INTO temp_user (email, password, firstname, lastname, age, gender, date, confirm_code)VALUES ('$email','$password','$firstname', '$lastname', '$age', '$gender', '$date', '$confirm_code')");
header('Location:confirm.php');
問題は、ページが次のページに進まなかったことです。すべてのページの情報を div タグに出力します