ตัวอย่าง Code ประกอบการทำระบบจัดการคลังข้อมูลงานวิจัย ด้วยภาษา PHP
ระบบจัดการคลังข้อมูลงานวิจัย V.1
ราคา 1,500 บาท พร้อมโค้ดทั้งหมดและฐานข้อมูล
ตัวอย่าง code สร้างฟอร์มเพิ่มข้อมูลนิสิต/นักศึกษา
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
<!-- Modal เพิ่มข้อมูลนักศึกษา --> <div class="modal fade" id="add_student" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header bg-green"> <button type="reset" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true"><font color="#FFFFFF">×</font></span></button> <h4 class="modal-title" id="myModalLabel"><span class="fa fa-plus"></span> เพิ่มข้อมูลนักศึกษา</h4> </div> <div class="modal-body"> <form name="" method="post" enctype="multipart/form-data"> <div class="form-group"> <label>รหัสนิสิต:</label> <input type="text" name="" class="form-control" required=""> </div> <div class="form-group"> <label>ชื่อนิสิต:</label> <input type="text" name="" class="form-control" required=""> </div> <div class="form-group"> <label>รหัสผ่านนิสิต :</label> <input type="text" name="" class="form-control" required=""> </div> <div class="form-group"> <label>อีเมล์ :</label> <input type="email" name="" class="form-control" required=""> </div> <div class="form-group"> <label>เบอร์โทรศัพท์ :</label> <input type="text" name="" class="form-control" required=""> </div> </div> <div class="modal-footer"> <button type="submit" name="btnAddStudent" id="btnAddStudent" class="btn btn bg-green btn-sm">บันทึกข้อมูล</button> <button type="button" class="btn btn bg-red btn-sm" data-dismiss="modal">ปิดหน้าต่างนี้</button> </div> </form> </div> </div> </div> |
ตัวอย่าง code บันทึกข้อมูลนิสิต/นักศึกษา
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
$sql_student = "INSERT INTO table_student (Student_ID, Student_Name, Student_Password, Student_Email, Student_Phone ) VALUES ($Student_ID, '$Student_Name', '$Student_Password', '$Student_Email', '$Student_Phone')"; $querya_student = mysqli_query($connection, $sql_student); if($querya_student){ echo ' <script> swal({ title: "บันทึกข้อมูลสำเร็จ", icon: "success", button: "ตกลง", }).then( () => { location.href = "'.$_SERVER['REQUEST_URI'].'" }); </script> '; } else { echo ' <script> swal({ title: "Error ข้อมูลซ้ำกัน!!", icon: "error", button: "ตกลง", }).then( () => { location.href = "'.$_SERVER['REQUEST_URI'].'" }); </script> '; } |
ตัวอย่าง code ลบข้อมูลนิสิต/นักศึกษา
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<!-- Modal Delete Student --> <div class="modal fade" id="deleteStudentModal<?php echo $rows['Student_ID'];?>" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true" > <div class="modal-dialog" role="document"> <div class="modal-content" style="border-radius: 10px;"> <form name="frm_delete_admin" method="post"> <div class="modal-body" id="txtModal"> <img src="../icon/icon-remove-21.jpg" width="20%"> <h3 id="txtDel"><b>คุณแน่ใจหรือไม่ว่าต้องการลบข้อมูลที่เลือก ?</b></h3> <h5 id="txtDel2"><b>รหัสนักศึกษา <?php echo $rows['Student_ID'];?> ชื่อ <?php echo $rows['Student_Name'];?></b></h5> <input type="hidden" name="Student_ID" value="<?php echo $rows['Student_ID'];?>"> <button type="submit" class="btn btn bg-green" name="btnDeleteStudent" id="btnDeleteStudent">ใช่ต้องการลบ Yes</button> <button type="button" class="btn btn bg-red" data-dismiss="modal">ไม่ต้องการลบ No</button> </div> <!-- ./modal body --> </form> </div> </div> </div> |
ตัวอย่าง code ลบข้อมูลนิสิต/นักศึกษา ออกจากฐานข้อมูล
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
<?php //ลบ Student if(isset($_POST['btnDeleteStudent'])){ echo "<pre>"; print_r($_POST); echo "<pre>"; exit(); $Student_ID = mysqli_real_escape_string($connection,$_POST["Student_ID"]); $sqlcheck = "SELECT Student_ID AS Student_ID FROM table_student WHERE Student_ID = '$Student_ID'"; $querycheck = mysqli_query($connection, $sqlcheck); $rowcheck = mysqli_fetch_array($querycheck); $Student_ID2 = $rowcheck['Student_ID']; echo 'Student_ID2 => '.$Student_ID2; if($Student_ID2 == $Student_ID) { $sqld_delete = "DELETE FROM table_student WHERE Student_ID = '$Student_ID'"; $queryd_delete = mysqli_query($connection, $sqld_delete); if($queryd_delete){ echo ' <script> swal({ title: "ลบข้อมูลสำเร็จ", icon: "success", button: "ตกลง", }).then( () => { location.href = "'.$_SERVER['REQUEST_URI'].'" }); </script> '; } else { echo ' <script> swal({ title: "Error ลบข้อมูลไม่สำเร็จ", icon: "error", button: "ตกลง", }).then( () => { location.href = "'.$_SERVER['REQUEST_URI'].'" }); </script> '; } } } ?> |
ตัวอย่าง code footer.php
1 2 3 4 5 6 7 |
<footer class="main-footer"> <div class="pull-right hidden-xs"> <!--footer--> <b>Version</b> 1.0 </div> <strong>Copyright © 2023 <a href="index.php">ระบบจัดการคลังข้อมูลงานวิจัย</a>.</strong> All Rights Reserved.</strong> </footer> |
สนใจจ้างพัฒนาระบบ เขียนระบบ
ทำเว็บไซต์ รับสอนเขียนโปรแกรม
inbox มาที่เพจ หรือติดต่อ 098-373-8651
ช่องทางการชำระเงิน
เงินสด หรือ e-banking
ธนาคารกสิกรไทย
เลขบัญชี : 0951168564
ชื่อบัญชี : นายวัยวุฒิ ชุมเมืองปัก