Why are you echoing the php tags here???
echo "<td><a href=""><img src='imagethumb.php?s=$image'; ?>&w=100" border="0" alt= '<?php echo $title; ?>"'></a><br>" <?php echo $row_books['Title']; ?> "</td>";
do this, i prefer to concatenate in the variables, think its more readable with colors, but you could put them directly into the string when using double quotes
echo "<td><a href=\"\"><img src=\"imagethumb.php?s=".$image." w=\"100\" border=\"0\" alt=\"".$title."\"></a>
<br>".$row_books['Title']."</td>";