I'm an old hand on programming but a wet-behind-the-ears newbie on webprogramming. I ran in to this in a project and I need help identifying the technique/language used.
It is some sort of dynamic web-page that fetches information from a database and displays it in a table. In the html-page that is used these tags are
<!-- some text that has to be some form of commands -->
What is it called? It is impossible to google either the starting tag or the closing tag :/ I know that it somehow uses a c-program to do the actual fetching of the data, but i'm at a loss开发者_运维问答 how it actually works.
What I need is the name so I know what to look for in the form of online resources to learn this and I do hope that this kind of tag-usage is only used by one type of language/technique :)
thanks in advance from archie!
Those tags are just html comments. It's possible that they're being used in a template file, and a server-side scripting language is doing some kind of search/replace to execute commands on the template. If so, it's impossible to say what language it is.
This looks like an HTML comment
http://www.w3schools.com/tags/tag_comment.asp
lessthan-bang-dash-dash is a comment, which closes at dash-dash-greaterthan.
Its a HTML comment, if you need further information http://www.w3schools.com/tags/tag_comment.asp ;)
The tags you posted in code are Comment Tags. They are for adding non-functional comments to code to help readers understand what is being done in the code.
精彩评论