Hello,
I am trying to print the thumbnail out how? I still have error on the thumbnail.
Parse error: syntax error, unexpected '<' in C:\xampp\htdocs\RustoleumCustomCMS\administrator\image_gallery.php on line 147
<table id="admintable" border="1" cellpadding="2" cellspacing="0">
<tr>
<th>Image</th><th>Path</th><th>thumbnail</th><th>Action</th>
</tr>
<?php
$i=0;
while ($data = mysql_fetch_array($result)){
$result2=($i%2)?'#DFA09D':'white';
echo "<tr bgcolor='$result2'>";
echo '<td>'.$data['image'].'</td>';
echo '<td>'.$data['path'].'</td>';
echo '<td>'.<img src="photos/image".$i>.'</td>';
echo '<td><a href="admin.php?mode=delete&id='.$data['id'].'">Hapus</a> |<a href="input_image.php?id='.$data['id'].'">Edit</a></td>';
echo '</tr>';
$i++;
}
?>
</table>