Hiện mình đang tạo 1 form đăng ký , mình đã hoàn thành xog việc kết nối với csdl nhưng lại chưa xét điều kiện rỗng cho cái text. mình muốn khi text nào rỗng thì nó sẽ báo chưa nhập text đó ở bên cạnh.
Đây là code form đăng ký của mình.(index.php) và mình xử lý action bên (xulydangky.php)
<form id="dangky" action="../class/admin/xulydangky.php" method="post">
<h1><a style="text-align:center; margin:50px ">Đăng ký</a>
<table style=" margin:20px">
<tr>
<td style="color:333333; padding:10px 10px 10px 10px">Tên tài khoản:</td>
<td><input type="text" name="tentaikhoan"/></td>
</tr>
<tr>
<td style="color:333333 ; padding:10 10 10 10">Mật khẩu: </td>
<td><input type="password" name="matkhau"/></td>
</tr>
<tr>
<td style="color:333333 ; padding:10 10 10 10">Nhập lại mật khẩu: </td>
<td><input type="password" name="nhaplaimatkhau"/></td>
</tr>
<tr>
<td style="color:333333 ; padding:10 10 10 10">Ngày sinh: </td>
<td><input type="text" name="ngaysinh"/></td>
</tr>
<tr>
<td style="color:333333 ; padding:10 10 10 10">Giới tính: </td>
<td><select name="gioitinh">
<option value="1">Nam</option>
<option value="0">Nu</option>
</select>
</td>
</tr>
<tr>
<td style="color:333333 ; padding:10 10 10 10; ">Địa chỉ: </td>
<td><input type="text" name="diachi"/></td>
</tr>
<tr>
<td colspan="2" style="text-align:center">
<input type="submit" name="btn_dangky" value="Đăng ký"/>
</td>
</tr>
</table>
</form>
Đây là code xử lý kết nối csdl (xulydangky.php)
<?php
include("../../config.php");
if(isset($_POST['btn_dangky']))
{
$tentaikhoan=$_POST['tentaikhoan'];
$matkhau=$_POST['matkhau'];
$ngaysinh=$_POST['ngaysinh'];
$gioitinh=$_POST['gioitinh'];
$diachi=$_POST['diachi'];
$sql= "insert into user(username,password,ngaysinh,gioitinh,diachi,create_date)
values('$tentaikhoan','$matkhau',$ngaysinh,$gioitinh,'$diachi',CURDATE())
";
//echo $sql;exit;
$ex_sql=mysql_query($sql);
if($ex_sql)
{
header("location: ../../admin/index.php");
}
else return false;
}
?>
Mong mọi người giúp e . e mới tập học php nên còn hơn kém. Cảm ơn mn