does anyone of you know how i can echo this " echo $row['time']; "
in quotation marks.
The print should look like "XYZ"
I need this for my own JSON style which will be used in an app..
Thanks in advance :)
does anyone of you know how i can echo this " echo $row['time']; "
in quotation marks.
The print should look like "XYZ"
I need this for my own JSON style which will be used in an app..
Thanks in advance :)
You can concate ""
using in echo as
echo '"'.$row['time'].'"';