รายละเอียดของการตอบ ::
พี่คับรบกวนช่วยแนะนำหน่อยได้ไหมคับว่าจากcodeของพี่ผมต้องเอามาเพิ่มแล้วปรับแก้อันไหนถ้าcodeผมเป็นแบบนี้
<?php require_once('Connections/employee.php'); ?>
<?php
mysql_select_db($database_employee, $employee);
$query_Recordset1 = "SELECT * FROM `date` ORDER BY day ASC";
$Recordset1 = mysql_query($query_Recordset1, $employee) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?><!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>
<table border="1">
<tr>
<td>date_id</td>
<td>day</td>
</tr>
<?php do { ?>
<tr>
<td><?php echo $row_Recordset1['date_id']; ?></td>
<td><?php echo $row_Recordset1['day']; ?></td>
</tr>
<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</table>
</body>
</html>
<?php
mysql_free_result($Recordset1);
?>