I have used sqlite_escape_string() function in one server and it is working fine.When i use the same code in anther server it throwing an error Call to undefined function sqlite_escape_string()I am using PDO for connecting the database.
I have used sqlite_escape_string() function in one server and it is working fine.When i
Share
sqlite_escape_stringis part of theSQLitepackage, which is distincely different then thePDO_SQLitepackage. Go for prepared statements instead of escaping the variables.