For future reference eval() is actually a pretty dangerous php function opening yourself up to hacking attempts if you don't know exactly what you are doing. You should avoid it in the future as much as possible, especially if you're not experienced.
It takes any text and evaluates it as if it was php code. When using eval() you need to put safe guards in place to make sure the text it gets could not possibly be dangerous or altered by the user.
|