Hey, I am just trying to include a base64 code in one of my sites. I know how to encrypt and decrypt base64 but I just can't find the right code enabling browsers to still read the code. I would be glad if you could help me
Hi sensei, Can I see your code where you want to add this code? I can not to understand your question. If you describe with example will be best to understand.
Well the code looks like PHA+ZGFzIGlzdCBzb2xsIGVpbiBiYXNlNjQgY29kZSBzZWluPC9wPg== Code (markup): and I want browsers to display the code encryped which is possible as there are quite some people using it. All I need to know is which php snippet I will have to use to let the browser know it's base64 encrypted
<?php eval(gzinflate(base64_decode('XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX=='))); ?><?php?> or <?php eval(base64_decode('XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX=')); ?><?php?> Must work ( I do not hope that you are still needing it )