19
Jan
Learn how to use php addslashes() function
In PHP, addslashes function is used to quote string with slashes. It returns a string with backslashes before characters that need to be quoted in database queries etc. These characters are single quote (‘), double quote (“), backslash (\) and NUL (the NULL byte). For example, to insert the name O’reilly into a database, you […]
Continue Reading →