Can anyone help me with this?
Here is my current statement:
$agency_address_flexi_3 = "<td height=\"16\"> </td>
<td height=\"16\" align=\"left\" valign=\"top\"><?php print($fax_display_1);?></td>
<td height=\"16\" align=\"left\" valign=\"top\"><?php print($fax_display_2);?></td>
<td colspan=\"2\" align=\"right\" valign=\"top\"><?php print($website_display);?></td>";
Here is the source view after execution:
<td height="16"> </td>
<td height="16" align="left" valign="top"><?php print(<font size="2" face="Verdana, Arial, Helvetica, sans-serif">Fax: </font>);?></td>
<td height="16" align="left" valign="top"><?php print(<font size="2" face="Verdana, Arial, Helvetica, sans-serif">(555) 555-1212</font>);?></td>
<td colspan="2" align="right" valign="top"><?php print(<a title="Click here to view the web site of Bruce Pea" href="http://www.andrewpea.com" target="_blank"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">www.andrewpea.com</font></a>);?></td>
Here is the output:
Fax: );?> (555) 555-1212);?>
I can't seem to get the html to view the code as:
php print($fax_display_2);?>
Am I missing an escape character or something?
Thanks, Gary