It sounds like SQL injection. This means that somewhere in your code you're passing unsanitized user input into an SQL query. Something like this:
$sql = "SELECT field FROM table WHERE field = '" . $_GET['formfield'] . "'";
In this case, a user could submit your form so that the formfield variable contains something like this:
' OR 1=1;--
That means the SQL passed to your database becomes:
SELECT field FROM table WHERE field = '' OR 1=1;--'
which makes the query match everything in that table, returning everything because 1=1 always returns true. The -- is to denote an SQL comment, so that the database ignores anything after the injected SQL, namely the closing '.
It can get even worse, because you could also inject something like this:
'; DROP TABLE table; --
The '; will close your initial query, then a new query DROP TABLE table; will get run, destroying that table if it exists.
Examine your code for anywhere that an SQL query is executed including data you received directly from the user. You should really be using something called "prepared statements" which will take care of these sorts of injections for you.