View Single Post
Old 10-17-2008, 09:30 PM   #4 (permalink)
Stealth
The Wanderer
 
Join Date: Jul 2008
Posts: 8
Thanks: 1
Stealth is on a distinguished road
Default

Here is a way you could it.
Example:
Code:
<?php
$c = base64_decode('Q29weXJpZ2h0IE15IFNpdGU=');
echo $c;
?>
Result:
Copyright My Site

You use something like this - Link

to encode your text into Base64 and replace 'Q29weXJpZ2h0IE15IFNpdGU=' with your Base64 code encrypted using Base64 Encode option, and PHP will decode it with the base64_decode function. The user does not see what the value of it is because it is already encrypted, and you don't use the base64_encode function to display the value. Then you just echo $c or whatever your string name is in the footer or where you want the copyright.
Stealth is offline  
Reply With Quote
The Following User Says Thank You to Stealth For This Useful Post:
codefreek (10-23-2008)