
Originally Posted by
Adam...
or you can use php which some browsers cant see in view source..
All php does is output whatever you want the PHP to output to the browser. Something like this:
Code:
<?php
echo '<html>
<body>
This is a test
</body>
</html>';
would produce this in the browser:
Code:
<html>
<body>
This is a test
</body>
</html>
The only thing the browser can't see is the Server side stuff in the PHP code. djr's post tells you everything about the source code cannot be protected.
Hope this helps.
Bookmarks