show/hide this revision's text 2 added 16 characters in body

There are a lot of things you could say.. The concerns are not specific to PHP.

Here's the simple answer:

Any input to your machine (or database) needs to be sanitized.

The code snippet you've posted pretty much lets a user run any code they want, so it's especially dangerous.

There is a pretty good introduction to introductory article on code injection here:

Wikipedia on Code Injection.

show/hide this revision's text 1

There are a lot of things you could say.. The concerns are not specific to PHP.

Here's the simple answer:

Any input to your machine (or database) needs to be sanitized.

The code snippet you've posted pretty much lets a user run any code they want, so it's especially dangerous.

There is a pretty good introduction to code injection here: Wikipedia on Code Injection.