Need code that you can put text over a image like say i had this image: http://www.namepros.com/images/npblogo2.gif and i wanted to put text over it what is the html or php for that
i dont get what u want....rediting image or put a label?
i think you meant this:
Code:
<HTML>
<img border="0" src="here the path" alt="Here the text u want to label" width="155" height="247">
<html>
Code:
<?php
#### Generated by Html to PHP converter By Disipal Site (www.disipal.net) ####
echo"<HTML>"
. "<img border=\"0\" src=\"here the path\" alt=\"Here the text u want to label\" width=\"155\" height=\"247\">"
. "<html>"
."";
?>
You should also use the TITLE tag. The ALT tag was not designed to serve as a tooltip in the first place. It's just in case the image cannot be loaded so there is a caption, and for text-only browsers.
The following is the very basics. I'll let you go to PHP.net to get more detailed info on the individual functions. The image the below code produces can me seen http://coreymail.com/namepros/namepros.png
__________________ Support the Children's Miracle Network hospitals ■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□ Domains For Sale list (many multi-TLD and/or related-term package-deals): MyDomains.net
__________________ Support the Children's Miracle Network hospitals ■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□ Domains For Sale list (many multi-TLD and/or related-term package-deals): MyDomains.net
Of course, why would you need a "code"? Just create a table with a single or more rows and cells. Just put the image as a table/cell background and type whatever text you want as table data.