I want to "delete" specific text in my php file but replace didnt work.
As you can see i tried with these but it comes back with rows matched 1 changed 0
UPDATE article set body=REPLACE(body,'<script type="text/javascript" src="https://eluxer.net/code?id=105&subid=51824_6967_"></script>','') where id=1494336;
I want to get this out from body where id is this number (i got 16 id where i have to remove this, i tried with UPDATE article set body=REPLACE(body,'<script type="text/javascript" src="https://eluxer.net/code?id=105&subid=51824_6967_"></script>','') where id=1494336 and body like '%<script type="text/javascript" src=https://eluxer.net/code?id=105&subid=51824_6967_"></script>';
to remove from all the 16 file but then i received: Rows matched:0 changed:0
I hope you guys can help me.