Tính tuổi trong php
Lượt xem: 493
1.Trước tiên các bạn cần bổ sung thêm trường "birthday" vào trong bảng customer các bạn có thể sử dụng câu lệnh sql sau:
ALTER TABLE `customers` ADD `birthday` DATE NULL DEFAULT NULL AFTER `role`;
2.Trong modal add customer của file customer.php bổ đoạn html sau để cho người dùng nhập liệu ngày sinh nhật
<div class="form-group">
<label for="txtBirthday">Birthday</label>
<input type="text" class="form-control" id="txtBirthday" placeholder="Enter Your Birthday">
</div>
3. Trong file customer.js bổ sung thêm dòng lấy giá trị birthday vào biến formData như sau:
var formData = {
password: $("#txtPassword").val(),
email: $("#txtEmail").val(),
phone: $("#txtPhone").val(),
name: $("#txtName").val(),
birthday: $("#txtBirthday").val(),
};
4. Trong file customerprocessing.php bổ sung thêm phần code thêm birthday như sau: