> I just wanted to know how to use strings with $ sign.
>
> If a word starts with a dollar sign php will think it's a variable, how
can
> I make
> " $bla bla  and bla $bla " to stay that way?
> Will this work? " \$bla bla  and bla \$bla "

don`t use "" - use ''. php doesn`t parse variables in such kind of strings.
' $bla bla  and bla $bla '

" \$bla bla  and bla \$bla " - this should work too, but i haven`t checked.

rash



-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to