I am using this syntax in php to display a picture.
$pict="photoids/1368.jpg";
$picture='<img src="$pict" >';
then
echo '<td>' . $picture . '</td>';
but it does not work yet if I use
$pict="photoids/1368.jpg";
$picture='<img src="photoids/1368.jpg" >';
then
echo '<td>' . $picture . '</td>';
the picture is displayed.
But I want to use different values of the image number to display different pictures in the table.
Can you help me sort out the above code used in php.
thankyon