im tryin to output html pages using php, kind of an online admin tool. However i cannot get the php script to print the character ". I know the ascii code is &.#34;, minus the period, but how do i put that into the script? Thanks so much.
you can use this :
$string = "\"";
echo $string;
result :
"
thanks, problem solved.
element digital.artist www.digitalpixel.org
or just add a \ before it like print("hello \" that is a quote");