I get a parse error on the last line of code (42) in this script. Can anyone tell me why?
<?
$show = $HTTP_GET_VARS['car'];
include('top.php');
include('left.php');
include('dbinfo.inc.php');
$stock="SELECT * FROM auto ORDER BY carid DESC LIMIT 50";
$result=mysql_query($stock);
$num=5;
$i=0;
while ($i < $num) {
$carid=mysql_result($result,$i,"carid");
$query = mysql_query("SELECT * FROM auto WHERE kind='$show'") or die(mysql_error());
$row = mysql_fetch_assoc($query);
$stockid = $row['stockid'];
$year = $row['year'];
$make = $row['make'];
$model = $row['model'];
$color = $row['color'];
$image = $row['image'];
?>
<td width="81%"><table width="100%" border="0">
<tr>
<td><center><a href="<?= show.php?$stockid' ?>">
<img src="cars/<?= $image ?> " alt="<?= $image ?>" height="200" width="350" border="1"></a>
</center></td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<?
++$i;
}
?>
</table>
<p align="center"> </p>
</td>
<? include('bottom.php'); ?>