Hi ,
Can I mix my SQL code with some HTML tags ?
Let`s assume that this is main code :
Could I have something like this one instead of that :
projects.pictureName is some data like firstproject.gif or secondproject.png ;
If I couldn`t do it how can I prepare my code for working with any HTML interpreter ?
Can I mix my SQL code with some HTML tags ?
Let`s assume that this is main code :
Code:
Select projects.projectName,
projects.pictureName
Code:
Select projects.projectName,
<img src="./pics/projects.pictureName" />
projects.pictureName is some data like firstproject.gif or secondproject.png ;
If I couldn`t do it how can I prepare my code for working with any HTML interpreter ?