mysql - how do i echo a row with quotationmarks in PHP -
does of know how can echo " echo $row['time']; "
in quotation marks.
the print should "xyz"
i need own json style used in app..
thanks in advance :)
you can concate ""
using in echo as
echo '"'.$row['time'].'"';
Comments
Post a Comment