Posted by Vince Morgan on 04/26/07 17:57
"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.
HTH
Vince
[Back to original message]
|