jsherk
Joined: 14 Jul 2007 Posts: 5
|
Posted: Sat Jul 14, 2007 8:11 pm Post subject: FREE HTML Encoder suggestion |
|
|
Hi
I'm fairly new to HTML and PHP, but I found the instructions for using the FREE HTML Encoder kind of vague. It took me a while to figure out exactly what I had to do to get it working. I have it working now, it works great!!!
Perhaps you could update the instruction page with a few more lines that just caltify it a little bit... perhaps an example, like this:
[code]
<?php
// How to use ionCube's FREE HTML Encoder:
// (1) Make a copy the file you want to encode with a .PHP extension,
// instad of an .HTML extension (ex: Copy FILENAME.HTML to FILENAME.PHP)
// (2) Add this file (including the starting <?php and the ending ?> ) to the
// beginning of the new file FILENAME.PHP and save it.
// (3) Upload both the new file {FILENAME.PHP} and also the
// html_encoder_1.9.php file to the same directory on your website.
// (4) You will have to change any references in other files
// from FILENAME.HTML to FILENAME.PHP
// (5) DONE!!! Next time you access this new file from a web browser, if you
// choose VIEW then SOURCE you should see that it has been obfuscated!
require("html_encoder_1.9.php");
?>
[/code]
Thanks |
|