First off, // is what you use to comment out PHP code or javascript, not HTML, so that won't work in templates. Secondly, what does work is using <!-- stuff here --> , however, sometimes those will cause issues if used in the middle of a table. Also, if you are wanting to make something so a user cannot see the information, then using comment tags will just put the information into the page source, so it is still there and a user can view it by looking at the page source. I don't think that is the case here, but sometimes that is the case and so you wouldn't want to just comment the information out.
|