[SOLVED] How to enter height in to MySQL data base

To specifically answer your question, you need to escape the quotes in order to insert them. It’s advised that you use the escaping function native to the database API you’re using. In this case, it’s the mysql_real_escape_string() function. Applying that to a string like 5'3" will return the string 5\'3\", which can then be safely inserted into your database.