i'm having trouble getting this to work. i want mysql to delete a row where the word 'example' is within a paragraph of a column.
e.g. in the column reply.. it has a paragraph with the word 'example' in it.
$deletebadreply1= mysql_query("DELETE FROM `Reply` WHERE `reply` LIKE '%example%'") or die (mysql_error());
i tried the above and it isnt deleting the row. how do i resolve this?