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>somehtm l here</p>"
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>somehtm l here</p>"
Comment