<?php class connectdb { private static $host = "localhost"; // ตรงนี้เป็น Public ก็ไม่รันครับ private static $user = "root"; private static $pass = "hackcode"; private static $db = "squid"; public static function connect(){ $db_conn = mysql_pconnect(self::$host, self::$user, self::$pass) or die(mysql_error()); mysql_select_db(self::$db, $db_conn) or die(mysql_error()); mysql_query("SET NAMES TIS620;"); return $db_conn; } } ?>
<html> <head> <title>User ALL</title> </head> <body> <? include ("cndb.php"); $strSQL = "SELECT * FROM Staff "; $objQuery = mysql_query($strSQL) ; ?> <table width="600" border="1"> <tr> <th class="first" width="177">Users Online</th> <th>UID</th> <th>GID</th> <th>History</th> <th>Edit</th> <th>Save</th> <th>Discon</th> <th class="last">Online</th> </tr> <? while($objResult = mysql_fetch_array($objQuery)) { ?> <tr> <td class="first style1"><?=$objResult["Username"];?> </td> <td><?=$objResult["UID"];?></td> <td><?=$objResult["GID"];?></td> <td><img src="img/Data-icon.gif" width="16" height="16" alt="" /></td> <td><img src="img/edit-icon.gif" width="16" height="16" alt="" /></td> <td><img src="img/save-icon.gif" width="16" height="16" alt="save" /></td> <td><a href="Discon.php?UID=<?=$objResult["UID"];?>" onclick="return confirm('Are you sure you want to Disconnect?')"> <img src="img/hr.gif" width="16" height="16" alt="" /></a> </td> <td class="last"><img src="img/add-icon.gif" width="16" height="16" alt="add" /></td> </tr> <? } ?> </table> <? mysql_close($objConnect); ?> </body> </html>
$con = new connectdb();
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง