How can i make PHP print the " sign?
I tried this but doesn't work
print("hello "John" \n");
I want to be able to put " symbol in my HTML code.
thanks
print ("hello \"John\"\n");
There is a PHP manual out there, with all this (and much more).
I suggest you give it a read! 🙂
http://www.php.net/manual/en/
If this is html code you're producing, you should probably use "
It will be displayed as a double-quote in a browser.
-Keegan