0
我已經創建了用戶註冊表單併成功將這些值傳遞給類。我想知道如何使用jquery ajax保存數據。但我不知道如何通過jquery ajax調用php類。我的代碼是這樣的:如何調用PHP類方法表單JQuery AJAX
<?php
if(isset($_POST['register'])){
$register = new Users();
$msg = $register->registration($_POST['fullname'], $_POST['email'], $_POST['phone'], $_POST['password'], $_FILES);
}
?>
<h3> Registration </h3>
<?php
if(isset($msg)){
echo $msg;
}
?>
<form action="" method="post" enctype="multipart/form-data">
<p> Full name: <input type="text" name="fullname"/> </p>
<p> Email: <input type="email" name="email"/> </p>
<p> Phone: <input type="phone" name="phone"/> </p>
<p> Password: <input type="password" name="password"/> </p>
<p> Photo 1: <input type="file" name="photo[]"/> </p>
<p> Photo 2: <input type="file" name="photo[]"/> </p>
<p> <input type="submit" name="register" value="Register"/> </p>
</form>
請人幫我使用jQuery AJAX來保存這種形式。
東西>看一看到: > http://stackoverflow.com/questions/13288569/jquery-ajax-retrieve-function-with-php-classes-and-functions –