I am moving a long with my project and came into a snag again. I have a number of clients which have images in a folder from 3 to 10 photos. I am tryign to create a dynamic table in HTML with PHP code embedded to get the right number of photos in to the table.
If I use this line of code all by it's self in a table it works fine and the photo displays with the PHP tags.
But if I wrap this in php tags to echo out the code the image will not show?
The end result with be a "foreach" loop for each photo that is in the client folder.
If I use this line of code all by it's self in a table it works fine and the photo displays with the PHP tags.
Code:
<TD><IMG SRC=[B]"<?php echo $linksArray[0]; ?>"[/B] HEIGHT=213 WIDTH=320 ALIGN=left HSPACE=10 VSPACE=10><TD>
But if I wrap this in php tags to echo out the code the image will not show?
Code:
<?php
echo '<TD><IMG SRC= " <?php echo $linksArray[0]; ?>" HEIGHT=213 WIDTH=320 ALIGN=left HSPACE=10 VSPACE=10></TD>';
?>
The end result with be a "foreach" loop for each photo that is in the client folder.
Last edited: