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

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -