yolop Posted October 7, 2008 Share Posted October 7, 2008 i do that <?php echo base64_encode('echo "ffff";') ?> and the result was ZWNobyAiZmZmZiI7 so i wantee to print in PHP with ba64 so i tried to do that <?php eval(" echo base64_decode('ZWNobyAiZmZmZiI7');"); ?> but it's print echo "ffff"; i want to use with base64_decode and the code will print "ffff" how please?? thank Link to comment https://forums.phpfreaks.com/topic/127372-problem-with-base64/ Share on other sites More sharing options...
kenrbnsn Posted October 7, 2008 Share Posted October 7, 2008 Just do <?php eval(base64_decode('ZWNobyAiZmZmZiI7')); ?> Ken Link to comment https://forums.phpfreaks.com/topic/127372-problem-with-base64/#findComment-658907 Share on other sites More sharing options...
yolop Posted October 7, 2008 Author Share Posted October 7, 2008 Just do <?php eval(base64_decode('ZWNobyAiZmZmZiI7')); ?> Ken THANK MAN have a nice day Link to comment https://forums.phpfreaks.com/topic/127372-problem-with-base64/#findComment-658908 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.