<form action="person_editchk.php" method="POST" enctype="multipart/form-data" name="form1" id="form1"> <table width="280" align="center" cellpadding="1" cellspacing="1"> <tr> <td colspan="2">Edit: <input name="hid_id" type="hidden" id="hid_id" value="<?php echo $row_rs_personedit['person_id']; ?>" /></td> </tr> <tr> <td width="92">Name</td> <td width="179"><label for="name"></label> <input name="name" type="text" id="name" value="<?php echo $row_rs_personedit['name']; ?>" /></td> </tr> <tr> <td>Degree</td> <td><label for="degree"></label> <input name="degree" type="text" id="degree" value="<?php echo $row_rs_personedit['degree']; ?>" /></td> </tr> <tr> <td>Position</td> <td><label for="position"></label> <input name="position" type="text" id="position" value="<?php echo $row_rs_personedit['position']; ?>" /></td> </tr> <tr> <td>Email</td> <td><input name="email" type="text" id="email" value="<?php echo $row_rs_personedit['email']; ?>" /></td> </tr> <tr> <td>Picture</td> <td align="center"><label for="fileUpload"></label> <label for="fileUpload"></label> <input name="fileUpload" type="file" id="fileUpload" value="<?php echo $row_rs_personedit['fileUpload']; ?>" /></td> </tr> <tr> <td> </td> <td align="center"><input type="submit" name="button" id="button" value="Edit" /></td> </tr> </table> </form>
<? session_start(); $hostname_con_stru = "localhost"; $database_con_stru = "stru_db"; $username_con_stru = "root"; $password_con_stru = "097057653"; $person_id=$_POST['person_id']; $name=$_POST['name']; $degree=$_POST['degree']; $position=$_POST['position']; $email= $_POST['email']; $_POST['fileUpload']=$_FILES["fileUpload"]["name"]; $fileUpload = $_POST['fileUpload']; if (copy($_FILES["fileUpload"]["tmp_name"],"images_s/upload/".$_FILES["fileUpload"]["name"])) { mysql_connect("$hostname_con_stru","$username_con_stru","$password_con_stru") or die (mysql_error()); mysql_select_db("$database_con_stru"); $strSQL="UPDATE personal SET name=$name, degree=$degree,position=$position,email=$email,fileUpload=$fileUpload WHERE person_id=$person_id"; mysql_query($strSQL); echo "<meta http-equiv='refresh' content='1 ;url=personal_list.php'>"; mysql_close(); } ?>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง