Hi guys, I'm new to the forum and php programming. Any help with my problem would be great. 🙂
I have images coded in html that look like this:
<div style="position:absolute; left:230; top:62">
<a href="/name.html"><img src="button.jpg" height=30 width=30 title="Name"border=0></a></div>
Basically these images are supposed to have custom location/sizes for each user. So far I have "left", "top", "height", "width", etc for each image and user saved in MySQL. I know how to access MySQL and put all that information into PHP variables.
$name, $left, $top, $height, $width
But I don't know how to use the PHP variables, to set the html code to the appropriate values. I just need to know how to do this for one image, the rest I can figure out. Thanks in advance.