Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

larswik

macrumors 68000
Original poster
Sep 8, 2006
1,552
11
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.
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:
You can't nest the php tags.

Use a period to concatenate:

PHP:
<?php
	echo '<TD><IMG SRC="'.$linksArray[0].'" HEIGHT=213 WIDTH=320 ALIGN=left HSPACE=10 VSPACE=10></TD>';
?>

or this will work:


PHP:
<?php
	echo "<TD><IMG SRC=\"{$linksArray[0]}\" HEIGHT=213 WIDTH=320 ALIGN=left HSPACE=10 VSPACE=10></TD>";
?>
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.