Hidden HTML text

JakJak

Paragon
Joined
Apr 27, 2009
Messages
2,004
Reaction score
0
FP$
6
Do you use this? Is this useful for designing? I'm talking about something like this... <!-- Ehh -->
 
It's called a comment tag.
Pretty usefull for designing yes, as you can place descriptions, and mark the start and the end of a script.
 
I use this alot, so my customers find it easy to edit them self's 🙂
 
I use it for HTML designing on Joomla pages. Such as a video page that has a range of categories in that page such as... movies, music, gaming etc. You can have something like this
<!-- Start of coding for video categories in tabs -->
<!-- MOVIE START -->
Text + HTML
<!-- MOVIE END -->

<!-- MUSIC START -->
Text + HTML
<!-- MUSIC END -->

<!-- GAMING START -->
Text + HTML
<!-- GAMING END -->

<!-- ETC START -->
Text + HTML
<!-- ETC END -->
<!-- End of coding for video categories in tabs -->


Really useful if I want to add a new video. Those <td> and <tr> can be a pain.
 
Its useful for users that use your script.

<!-- DO NOT EDIT HERE AND BELOW -->

<!-- BLAHBLAHABLHALSKDHSJDFHKSJDFH -->
 
It's useful for commenting things.

Also, phpBB's template system lets you use it for logical operations as well, and conditionals.

Like:
<!-- IF S_LOGGED_IN -->
Welcome back!
<!-- ELSE -->
Welcome, Guest! Please register!
<!-- ENDIF -->

Pretty darn useful. 😀
 
Back
Top Bottom