Well, I believe that mysql_query will essentially prevent you from running stacked queries. So, adding a semicolon and another statement wouldn't work. One thing is clear, you can insert anything you want into that table. I think that you are back looking to see where that data is displayed. You can then implement a CSRF / XSS vector. The CSRF vector is especially nice since an admin would likely be reviewing the logs.
Correct, stacked queries does not work on PHP and MySQL implementations

It is possible to pollute / poison the logs with CSRF and / or XSS vector attacks,
however it is also possible to perform completely blind sql injection if all aspects are known or possible to be predicted or enumerated.
In this case, one thing to check is e.g. is magic_quotes turned on?
Possible attack vectors include but are not limited to:
- Altering user and password credentials
- Uploading backdoors in PHP (this requires special permissions.)
- Loading system files and moving them into the "http" (html) directory. (requires special permissions too.)
- Adding new users with administrator privileges.
- Log Pollution / Poisoning as Ketchup said
