I\'m trying to build a catalog of products and I don\'t know what it is doing, and I\'d like to peek inside. Can someone figure out how to print the source code and tell me how?
Instead of eval(gzinflate(base64_decode($a)))
, do echo gzinflate(base64_decode($a))
and repeat with the result until you get useful source code.
Change the eval
call at the end of that junk to say echo
instead. it'll spit out the decoded code.
[...snip....]; ob_end_clean(); echo(gzinflate(base64_decode($a))); ob_end_flush(); ?>
^^^^---here