This should work:
$insertString = "Jerry's practice focuses";
$query = "INSERT INTO table_name (field_name) VALUES ('".addslashes($insertString)."');";
addslashes adds slashes to the string (well duh) so the addslashes($insertString) would return: "Jerry\'s practice focuses"