Posted by Vince Morgan on 04/26/07 18:07
"Vince Morgan" <vinhar@REMOVEoptusnet.com.au> wrote in message
news:4630e7b2$0$16556$afc38c87@news.optusnet.com.au...
>
> "KidBrax" <braxton.beyer@gmail.com> wrote in message
> news:1177605988.744898.320720@u32g2000prd.googlegroups.com...
> > Is there a way to use html as a value for a php variable while going
> > in and out of the php tag?
> >
> > For example, can you do something like this?
> >
> > <?php $strHtml = ?>
> > <p>somehtml here</p>
> > <?php ; ?>
> >
> > so that the value of $strHtml equals "<p>somehtml here</p>"
> >
>
> <?php
> $strHtml = "<p>somehtml here<p>";
> ?>
> Don't forget to end the line with a semicolon.
Or close your tags </p> like I just did ;)
> HTH
> Vince
>
>
Navigation:
[Reply to this message]
|