I'm not sure if it's possible, but what I want to do is this: Add text on top of an image displayed. The text can't be permanently added to the image, as it will be called from a MySQL database, and will frequently alter. Also, the same image will be displayed a number of times on the same page, but with different text. Alternatively, display a (javascript?) popup when the pointer hovers over the image, the popup again displaying different information called from the database. Or maybe both, if both are possible.
A dynamic image can be easily done in php, use imagecreatefrompng() to load an existing image and then use imagestring() to write the stringt unto the image. [SEARCh=GOOGLE]Php Dynamic Images[/SEARCH] [Search=Google]Php Dynamic Sig[/SEARCH]
Thanks. That looks like it might be a lot easier than I thought. Any ideas on creating a popup on hover?
That would take a little javascript. Something like (rough code): onmouseover=window.open(parameters). You would also probably want onmouseout=window.close() - I think you can specifiy which window to close here using the name you gave the window with the open command... Or something like that.....