Is there a way to hide commenting in my php/html file?
I want to add markup that I don't want people to be able to view in source in their browsers.
Is this possible?
<!-- Prevent this comment from being viewed -->
<?php...
Thanks in advance.
|
feedback
|
|
If you add comments as PHP, people won't see it in their browser.
| |||
feedback
|
|
I see what you mean. You can do that with output buffering:
And with output buffering.
However, if you want to remove comments only, you need to do some parsing:
That does sound a bit over-engineered though... | |||||
feedback
|
|
Just swap lines above and use php comment:
| |||
|
feedback
|
<!-- .. -->), but PHP comments (/* .. */and// ..) are of course hidden. Oh and read up on how client-server works (and how PHP is a server language). – Christian Apr 6 '11 at 10:00