PHP:
<?php
$query = "SELECT * FROM menu WHERE id IN (1, 2, 3, 4)";
// execute query
$result = mysql_query($query) or die ("Error in query: $query. ".mysql_error());
// see if any rows were returned
if (mysql_num_rows($result) > 0) {
// yes
// print them one after another
echo '<table class="felo">';
echo "<tr>";
echo'<td width="800" height="100%" bgcolor="#FFFFFF" class="quelo">';
while($row2 = mysql_fetch_row($result)) {
$get = '?';
$delimiter = '';
foreach($ids as $id){
$get .= 'id[]=' . $id . $delimiter;
$delimiter = '&';
}
echo <<<ROW // line 144--
<table class="trelo" >
<tr>
<td width="152" rowspan="2" class="cebo">
<h3 align="center"><a href="itemdetails.php?{$get}> {$row2[3]}</a> </h3>
<p>
<a href="#"><img src="{$row2[0]}" width="140" height="160" alt="product" style=" border-color:#FF6600; border:thin; border-style:solid;"/></a>
</p>
</td>
</tr>
</table>
ROW;
}
echo "</td>";
echo "</tr>";
echo "</table>";
}
What could that be I have research but from my limited view I don't see any mistake.









