There is a table that contains a VARCHAR type field with the text one+two , when you try to delete it with the DELETE FROM my WHERE test='one+two' deletion does not occur, although the database responds with the words the query was executed successfully. The plus symbol is removed from the field and the query, and this query is processed normally. The problem is observed only with the hoster, there are no such problems on the local test server ...
What can this be connected with?
$result = mysql_query("INSERT INTO services (service, price) VALUES ('$_POST[service]', '$_POST[price]')");I delete$result = mysql_query("DELETE FROM services WHERE service=$_GET[del]");if plus symbols are sent to theservicefield, the deletion does not occur. and what needs to be clarified to complete the full picture? - perfect