<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <form method="post" action="logincheck.php"> <fieldset style="width:230px"> <legend>Login</legend> <table> <tr> <td>Username:</td> <td><input type="text" name="Username" /></td> </tr> <tr> <td>Password:</td> <td><input type="text" name="Password" /></td> </tr> </table> <input type="submit" name="Submit" value="Login" /> </fieldset> </form> </body> </html>
<?php session_start(); if(isset($Username) and isset($Password)) { include("connect.php"); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <?php $str = ("select Username,Password from username where Username='$Username' and Password='$Password' "); $query = mysql_query($str); $num = mysql_num_rows($query); if($num<=0) { echo "Password not complete"; echo "<meta http-equiv=refresh content=2;URL=login.html>"; exit(); } else { $result = mysql_fetch_array($query); if($Username!=$result['Username'] and $Password!=$result['Password']) { echo "Password not complete"; exit(); } else { $login_true = $Username ; session_register("login_true") ; echo "<meta http-equiv='refresh' content='0 ;url=/keng/check1.php'>" ; exit() ; } } } ?> </body> </html>
<?php session_start(); if(!session_is_registered("login_true")) { echo "<meta http-equiv='refresh' content='0;url=form.html'>" ; exit(); } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <?php include("connect.php"); $str = ("select * from Username where Username='$login_true'") or die ("ไม่สามารถติดต่อฐานข้อมูลได้"); $query = mysql_query($str); $result = mysql_fetch_array($query); ?> <table> <tr> <td width="62">Detail</td> </tr> <tr> <td>ID:</td> <td width="21"><?php echo $result["id"]; ?></td> </tr> <tr> <td>Fisrtname:</td> <td><?php echo $result["Firstname"]; ?></td> </tr> <tr> <td>Lastname:</td> <td><?php echo $result["Lastname"]; ?></td> </tr> <tr> <td>Nickname:</td> <td><?php echo $result["Nickname"]; ?></td> </tr> <tr> <td>Age:</td> <td><?php echo $result["Age"]; ?></td> </tr> <tr> <td>Country:</td> <td><?php echo $result["Country"]; ?></td> </tr> <tr> <td>Username:</td> <td><?php echo $result["Username"]; ?></td> </tr> <tr> <td>Password:</td> <td><?php echo $result["Password"]; ?></td> </tr> <tr> <td>Email:</td> <td><?php echo $result["Email"]; ?></td> </tr> <tr> <td>Telephon:</td> <td><?php echo $result["Telephon"]; ?></td> </tr> <tr> <td><a href="form.html">Logout</a></td> </tr> </table> </body>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง