PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
i was wondering what to code for the database to accept apostrophe and/or quotation marks. i used stripslashes but the database dows not accept ' ' and " ".
its not the database that is not accepting them, you are not escaping these characters properly in your coding and that is forming an incorrect SQL statement. Try escaping the characters, look into mysql_escape_string() or addslashes() to start, depends on what database you are using.