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 Quote Link to comment 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>"; ?> Quote Link to comment Share on other sites More sharing options...
bigrossco Posted January 3, 2007 Author Share Posted January 3, 2007 thanks thats it working now Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.