I want to run this:
UPDATE users SET about="$about" ;
but when my $about
contains =
, the script makes a mistake and do something like this:
$about="<img src=somevalue.jpg />";
The script adds this in the database:
<img src
and nothing more.