Please help what is missing here i cannot get the data of row that I check on the checkbox?
<?
include("connect.php");
include("home_order.php");
echo "<div><table border=0 cellspacing='15' align=center id=table1>
<tr>
<th>Title</th>
<th>Price</th>
</tr>";
$code = $row['Code'];
$getcheck=$_GET['check'];
if ($getcheck){
$result= mysql_query("SELECT * FROM books where Code='$code'");
while($row = mysql_fetch_array($result)) {
echo "<td align=center>".$row['Title']."</td>";
echo "<td align=center>".$row['Price']."</td>";
}}
echo"</table>";
?>