<html> <head> <title>ชื่อสมาชิก</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <script language="JavaScript"> function ClickCheckAll(vol) { var i=1; for(i=1;i<=document.frmMain.hdnCount.value;i++) { if(vol.checked == true) { eval("document.frmMain.chkDel"+i+".checked=true"); } else { eval("document.frmMain.chkDel"+i+".checked=false"); } } } function onDelete() { if(confirm('Do you want to delete ?')==true) { return true; } else { return false; } } </script> <form name="frmMain" action="phpMySQLDeleteMultiRecord.php" method="post" OnSubmit="return onDelete();"> <? $objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database"); $objDB = mysql_select_db("test"); $strSQL = "SELECT * FROM members"; $objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]"); ?> <table width="765" border="1"> <tr> <th width="97"> <div align="center">ลำดับ</div></th> <th width="104"> <div align="center">ชื่อ </div></th> <th width="211"> <div align="center">user</div></th> <th width="32"> <div align="center">pass</div></th> <th width="178">รูป</th> <th width="60">แก้ไข</th> <th width="37"> <div align="center"> <input name="CheckAll" type="checkbox" id="CheckAll" value="Y" onClick="ClickCheckAll(this);"> </div></th> </tr> <? //คำสั่งแก้ในกรณีไม่เป็นภาษาไทย echo "<br>"; $sql="SELECT * FROM tbCategory"; mysql_query("SET NAMES tis620"); $i = 0; while($objResult = mysql_fetch_array($objQuery)) { $i++; ?> <tr> <td><div align="center"><?=$objResult["id"];?></div></td> <td><?=$objResult["name"];?></td> <td><?=$objResult["user"];?></td> <td><div align="center"><?=$objResult["pass"];?></div></td> <td><div align="center"><img src="myfile/<?=$objResult["FilesName"];?>" width="55" height="70"></div></td> <td><a href="profile.php?id=<?=$objResult["id"];?>">แก้ไข</a></td> <td align="center"><input type="checkbox" name="chkDel[]" id="chkDel<?=$i;?>" value="<?=$objResult["id"];?>"></td> </tr> <? } ?> </table> <p> <? mysql_close($objConnect); ?> <input type="submit" name="btnDelete" value="Delete"> <input type="hidden" name="hdnCount" value="<?=$i;?>"> </p> <p><a href="showcom.php">กลับไปหน้าหลัก</a></p> </form> </body> </html>
<? ob_start(); //============ Start Session และทำการเรียก Function ติดต่อฐานข้อมูล session_start(); require("connect.php"); if($_GET["action"]=="Register") { if(trim($_POST["user"]) == "")//ใส่ { echo "<script>alert('กรุณาใส่ กำหนด user ของคุณ')</script>"; echo"<script>history.back();</script>"; exit(); } elseif(trim($_POST["txtPass"]) == "")//พาส { echo "<script>alert('กำหนด Password ของคุณ')</script>"; echo"<script>history.back();</script>"; exit(); } elseif(trim($_POST["txtPassCon"]) == "")//ยืนยันพาส { echo "<script>alert('กรุณายืนยัน Password')</script>"; echo"<script>history.back();</script>"; exit(); } elseif($_POST["txtPass"] != $_POST["txtPassCon"])//ตรวจสอบพาสว่าตรงกันหรือไม่ { echo "<script>alert('Password ทั้งสองช่องไม่ตรงกัน')</script>"; echo"<script>history.back();</script>"; exit(); } elseif(trim($_POST["txtName"]) == "") { echo "<script>alert('กรุณากรอกชื่อของ คุณ!!!')</script>"; echo"<script>history.back();</script>"; exit(); } //คำสั่งแก้ในกรณีไม่เป็นภาษาไทย echo "<br>"; $sql="SELECT * FROM tbCategory"; mysql_query("SET NAMES tis620"); //============ แก้ไขข้อมูลส่วนตัว $sql="Update members set user='".$_POST["user"]."',pass='".$_POST["txtPass"]."',name='".$_POST["txtName"]."' WHERE id= '".$_GET["$id"]."' "; $dbquery = mysql_query($sql); $objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]"); $objResult = mysql_fetch_array($objQuery); if($_FILES["filUpload"]["name"] != "") { if(copy($_FILES["filUpload"]["tmp_name"],"myfile/".$_FILES["filUpload"]["name"])) { //*** Delete Old File ***// @unlink("myfile/".$_POST["hdnOldFile"]); //*** Update New File ***// $strSQL = "UPDATE files "; $strSQL .=" SET FilesName = '".$_FILES["filUpload"]["name"]."' WHERE id = '".$_GET["id"]."' "; $objQuery = mysql_query($strSQL); } } echo "<script>alert('แก้ไขข้อมูลเรียบร้อยแล้ว')</script>"; echo"<meta http-equiv='refresh' content='2; url=member.php'>"; exit(); } ?> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-874" /> <title>แก้ไข</title> <link href="css/styles.css" rel="stylesheet" type="text/css"> </head> <body> <form name="frmRegister" method="post" action="?action=Register" onSubmit="return checkvalue()"> <table width="100%" border="0"> <tr> <td><table width="100%" height="30" border="0" align="center" cellpadding="0" cellspacing="0" id="Table_01"> <tr> <td width="100%"><div align="center"><strong>แก้ไข</strong></div></td> </tr> </table> </td> </tr> <tr> <td><div align="center">กรุณากรอกข้อมูลให้ครบตามช่องที่กำหนด (<font color="#FF0000">*</font>) </div></td> </tr> <tr> <td> <table width="100%" border="0" cellspacing="2" cellpadding="2"> <tr> <td width="45%" height="26"><div align="right">user : </div></td> <td width="55%"><input name="user" type="text" class="txtbox" id="txtEmailCon" size="20" maxlength="30"> <font color="#FF0000">*</font></td> </tr> <tr> <td height="26" valign="top"><div align="right">Password :</div></td> <td><h5> <input name="txtPass" type="password" class="txtbox" id="txtPass" size="20" maxlength="12"> <font color="#FF0000">*กรอกไม่เกิน 12 คำ</font></h5></td> </tr> <tr> <td height="26"><div align="right"><span class="style2">ยืนยัน Password :</span></div></td> <td><input name="txtPassCon" type="password" class="txtbox" id="txtPassCon" size="20" maxlength="12"> <font color="#FF0000">*</font></td> </tr> <tr> <td height="26" valign="top"><div align="right">ชื่อ :</div></td> <td><input name="txtName" type="text" class="txtbox" id="txtName" size="25" maxlength="30"> <font color="#FF0000">*</font> </td> </tr> <tr> <td height="13" valign="top"><div align="right">รูป : </div></td> <td><p> <input type="file" name="filUpload"> </p> </td> </tr> <tr> <td height="28"> </td> <td><label> <input type="submit" name="Submit" id="Submit" value="ตกลง"> </label> <label> <input type="reset" name="Reset" id="button" value="ล้างข้อมูล"> </label></td> </tr> </table></td> </tr> <tr> <td width="100%"><hr align="center" width="98%" color="#f2f2f6"></td> </tr> </table> </form> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง