I have this:
$rm = json_decode($room_list[0]['room']);
and i want to set a variable $string which include the result of echo of above variable.
For Example, IF:
echo json_decode($room_list[0]['room'];
echos: Lorem Ipsum <a href="www.google.com>GG</a>.
i want the string to be:
$string = 'Lorem Ipsum <a href="www.google.com>GG</a>.'
How can i do that?