我的html表单是:
<form id="myform" action="" method="post" >
<input id="firstname" name="firstname" type="text" placeholder="FIRST NAME" autofocus><br>
<input id="lastname" name="lastname" type="text" placeholder="LAST NAME"><br>
<input id="gender" name="gender" type="text" placeholder="GENDER" ><br>
<input id="email" name="email" type="email" placeholder="EMAIL"><br>
<input id="date" name="date" type="date" placeholder="JOINING DATE" ><br>
<input id="designation" name="designation" type="text" placeholder="DESIGNATION"><br>
<input id="username" name="username" type="text" placeholder="USER NAME" ><br>
<input id="password1" name="password1" type="password" placeholder="PASSWORD" ><br>
<input id="password2" name="password2" type="password" placeholder="CONFORM PASSWORD" ><br>
<input type="button" id="submit" value="SUBMIT" />
</form>
在这个程序中,我使用 ajax 进行验证。为此,我正在序列化表单。
data:$("#myform").serialize(),
而且我不知道如何在 PHP 中反序列化它。任何人都可以解释在 PHP 中反序列化的代码,我使用 html5 来编写表单。