hi guys.
I store all the image files in a database.
now I want to print all the images on the same page.
when I use the content-type and then right away dump 1 image it works, how can I dump many images at the same time?
also, when I use the content-type and then send some html code and then dump the image, it won't work. how can I output some html and then my image to the screen?
thanks.
<table>
<?
for($i=0;$i<$counter;$i++)
{
print '<tr>';
for($j=0;$j<$cols;$j++)
{
print '<td>';
print mysql_result($rs,$i,j);
print '</td>';
}
print '</tr>';
}
?>
</table>