Hello
I have a .php and an .html file. The php file is pulling an image from somewhere (sorry to be technical :p) and the html file is then displaying it via a string (I believe). Can someone please tell me how I change the size of the displayed image (create a thumbnail if you like).
Heres my php:
if($ds['userpic']) $userpic = '<img src="images/userpics/'.$ds['userpic'].'" alt="" />';
else $userpic = '<img src="images/userpics/nouserpic.gif" alt="" />';
And the HTML:
<td class="picture" height="100" align="left">$userpic</td>
Thanks in advance for any advice.
😃