• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

please help!

scarfication

New Member
i need to change the size of in image,..

ok that isn't so hard you think, but i can't use html, or something, im an complete newbie can anyone change this code to the good one?

original line:

print "<left><img src=\"" . $record["picurl"] . "\" >";

my line, that doesn't work!

print "<left><img src=\"" width="120" height="180". $record["picurl"] . "\" >";

you're line: please help me!
 
Try:

print "<img src=\"" . $record["picurl"] . " width=\"120\" height=\"180\" align=\"left\">";
 
Correction:

print "<img src=\"" . $record["picurl"] . "\" width=\"120\" height=\"180\" align=\"left\">";
 
Back
Top