bigrossco Posted January 3, 2007 Share Posted January 3, 2007 I want to make this code:[code]<?phpecho "<td><img src=\"../images/".$row[9]."\" </td>"; ?>[/code]to also include hight and width to make images smaller how can I do this?Ross Link to comment https://forums.phpfreaks.com/topic/32688-solved-images/ Share on other sites More sharing options...
ToonMariner Posted January 3, 2007 Share Posted January 3, 2007 <?phpecho "<td><img src=\"../images/".$row[9]."\" width=\"" . $yourwidth ."\" height=\"" . $yourheight . "\" /></td>"; ?> Link to comment https://forums.phpfreaks.com/topic/32688-solved-images/#findComment-152149 Share on other sites More sharing options...
bigrossco Posted January 3, 2007 Author Share Posted January 3, 2007 thanks thats it working now Link to comment https://forums.phpfreaks.com/topic/32688-solved-images/#findComment-152174 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.