I'm not php expert and I don't know what's the difference(1) between a and b.
a.)eval('return "'.base64_decode("encoded_text").'";')
b.)base64_decode("encoded_text")
-I THINK, a is php code and b is just string. And my other question is:
What is the difference(2) between c and d?
c.)eval('return "'.base64_decode("encoded_text").'";')
d.)eval(base64_decode("encoded_text"))
So I have 2 questions. Who can answer/help ?
Thanks.