I'm using php and mysql and would like to pass the following parameter to a stored procedure
$param = "col = '{"video":"<iframe width=\'480\' height=\'600\' src=\'www.qualquercoisa.com\´"}'";
call spActCol($param);
but it happens that the stored procedure overrides all escaped characters which creates an error when trying to update the database, ie internally in the procedure the sentence is:
UPDATE exemple SET col = '{"video":"<iframe width='480' height='600' src='www.qualquercoisa.com'"}' where id=1;
Does anyone have an idea how to solve this problem?