iptracker
answered Nov 30 '-1 00:00
is it dangerous to use the eval() function in PHP ?
Answer is Yes , eval() is dangerous because by eval() hacker can inject code into the system
suppose :
eval('echo file_get_contents("index.php");');
this code will return all code of index.php
you should disable eval() to avoid the problem