รายละเอียดของการตอบ ::
<?php
session_start(); ?>
<?php
include('connect.php');
?>
<!DOCTYPE HTML>
<html>
<head>
</head>
<body >
<?php echo $_SESSION["id"] ?>
<table class="table table-striped">
<tr>
<th>id_user</th>
<th>menu</th>
<th>rating</th>
</tr>
<?php
$sql = "SELECT * FROM tbl_rating WHERE id_rating LIKE $id ";
$dbquery = mysql_query($sql);
$i=1;
while( $result = mysql_fetch_array($dbquery) )
{
?>
<tr>
<td><?php echo $_SESSION["id"] ?></td>
<td><?php echo $result['id_menu'];?></td>
<td><?php echo $result['rating'];?></td>
</td>
</tr>
<?php
$i++; }
?>
</table>
</body>
</html>
ทำแล้วคะ ใส่โค้ดแล้วคะ แต่มันไม่ขึ้นคะ