illuz1on Posted March 14, 2007 Share Posted March 14, 2007 Hey again, Ok so my sql gets things from the table and then puts them like this: // More Details Images $picture = $record['mpic1']; $picture = $record['mpic2']; $spic1 = $record['spic1']; $spic2 = $record['spic2']; $spic3 = $record['spic3']; Then, I have some HTML outside of this php with some images in it, such as this.. <td><img height="220" alt="cape town beaches" src="image.jpg" width="200" /></td> How can I just edit the one little src="" to make it extract from database? like put the contents of $spic1 in place of image.jpg .... if i just replace it it doesnt seem to work Thanks Link to comment https://forums.phpfreaks.com/topic/42684-image-src-get-from-db/ Share on other sites More sharing options...
aebstract Posted March 14, 2007 Share Posted March 14, 2007 echo "<img src=$spic1.jpg border=0 />"; Link to comment https://forums.phpfreaks.com/topic/42684-image-src-get-from-db/#findComment-207092 Share on other sites More sharing options...
Barand Posted March 14, 2007 Share Posted March 14, 2007 or <td><img height="220" alt="cape town beaches" src="<?php echo $pic1 ?>" width="200" /></td> Link to comment https://forums.phpfreaks.com/topic/42684-image-src-get-from-db/#findComment-207097 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.