<meta charset='utf-8'>
<title>การจัดการข้อมูลสมาชิก</title>
<?php
$hostname = "localhost";
$user = "root";
$password = "";
$dbname = "test01";
$link=@mysql_connect($hostname, $user, $password) or die("Contact database is not");
mysql_select_db($dbname) or die("Select the database is not");
mysql_query("SET NAMES UTF8");
$sql="SELECT *From test02";
$rs=mysql_query($sql);
if($rs){
echo"
<table border='1'>
<tr>
<th>ลำดับ</th>
<th>รหัส</th>
<th width='100px'>ชื่อผู้ใช้</th>
<th width='200px'>รหัสผ่าน</th>
<th>ชื่อ</th>
<th>นามสกุล</th>
<th>อีเมล์</th>
<th>แก้ไข</th>
<th>ลบ</th>
</tr>";
$i=1;
if(mysql_num_rows($rs)){
while($row=mysql_fetch_array($rs)){
echo"
<tr>
<td align='center'>",$i++,"</td>
<td align='center'>",$row['MemId'],"</td>
<td align='center'>",$row['Username'],"</td>
<td align='center'>",$row['Password'],"</td>
<td align='center'>",$row['Name'],"</td>
<td align='center'>",$row['LName'],"</td>
<td align='center'>",$row['Mail'],"</td>
<td align='center'><a href= Edit.php?MemId=",$row['MemId'],">แก้ไข</a></td>
<td align='center'><a href= Delete.php?MemId=",$row['MemId'],">ลบ</a></td>"; บรรทัดนี้นะครับ คือต้องการ การยืนยันการลบข้อมูลครับ
echo"</tr>";
}
}
}
?>