You'll want your PHP code to be proprietary and encoded,
of course.

Run this script, save the output, and then run *that*.

<?php

$helloworld = 'Hello World';
$n = 30;
for($i=0; $i<$n; $i++)
{    $helloworld = base64_encode($helloworld);
}
echo '<?php\n$h="';
echo chunk_split($helloworld);
echo '";';
echo 'for($i=0;$i<'.$n.'; $i++)';
echo '{$h = base64_decode($h);}';
echo 'echo $h;';


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to