I am trying to write string to screen without quotes in php. I get the string data from a Mysql database and I try to write it to a textbox but double quotes are also written.
Example : "a2"
.
i want that just write => a2
.
$gönder= (json_encode($gönder) );
echo $gönder;
string data is $gönder
.