Forum Moderators: coopster & phranque

Message Too Old, No Replies

Displaying a $ sign

"$50 is the anual fee"

         

Bowdii

3:15 pm on Sep 19, 2003 (gmt 0)

10+ Year Member



the .cgi script is reading the $50 as variable. How do i change that so I can print it the way it is listed?

Thanks for anyhelp!

coopster

3:22 pm on Sep 19, 2003 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



escape it:
"\$50 is the anual fee"
or use single quotes to stop interpolation:
'$50 is the anual fee'

Bowdii

3:37 pm on Sep 19, 2003 (gmt 0)

10+ Year Member



O man, i tried /$ :(:(

Thanks!