Iam trying to set the ALT for each image. If I have image title like information systems in the database. after I run the php script and call the image tilte I get only the word information, systems will not show up on the browser when hightling the image . I am looking for a way to get both words to display.
well likely you are doing this
<img src=graphic.gif alt=<? echo $alttagfromdb; ?>>
you need to enclose it in quotes like:
<img src="graphic.gif" alt="<? echo $alttagfromdb; ?>">