I am uploading song samples to my site and whenever a song title contains an apostrophe ' -- it gives me this error:

1064 You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'I Won't Have To Worry Anymore.mp3', now())' at line 5
in:
[insert into media_clips (media_id, clip_type, clip_filename, date_added) values ( '4', '1', 'Can't Get It.mp3', now())]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.


I know this is a stripslashes problem, but I'm not sure how to fix it. I added the php_value magic_quotes_gpc off to my htaccess file, but that did not fix the problem.

Can someone point me to the file that needs to be corrected and how to do this?

Thanks.