[PHP-WIN] Re: strings with $ sign

2002-04-01 Thread martinahingis
use this $result_html = " ... html code<-- \" FOOTER CENTER \$LOGOIMAGE footer.jpg \" !--> ... more html code"; --- martina. "Sviss Cobazor" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > The thing is that the result html code is to be parsed

Re: [PHP-WIN] Re: strings with $ sign

2002-03-10 Thread Mike Flynn
$result_html = ' ... html code<-- " FOOTER CENTER $LOGOIMAGE footer.jpg " !--> ... more html code'; Use SINGLE quotes to enclose DOUBLE quotes or $ dollar signs. -Mike At 11:51 AM 3/10/02 +0100, you wrote: >The thing is that the result html code is to be parsed by HTMLDOC (pdf >generator)

[PHP-WIN] Re: strings with $ sign

2002-03-10 Thread Sviss Cobazor
The thing is that the result html code is to be parsed by HTMLDOC (pdf generator) to create pdf from the webpage. By inserting <-- "some string" !--> into the html, HTMLDOC can catch these strings and act from them. example: $result_html = " ... html code<-- " FOOTER CENTER $LOGOIMAGE footer

[PHP-WIN] Re: strings with $ sign

2002-03-09 Thread robert janeczek
> 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