Writing string to screen without quotes in php -
i trying write string screen without quotes in php. string data mysql database , try write textbox double quotes written.
example : "a2" .
i want write => a2 .
$gönder= (json_encode($gönder) ); echo $gönder; string data $gönder .
use :
echo trim($gönder, '"');
Comments
Post a Comment