Hi all.
I have a dynamically generated HTML page using PHP. I create my PHP variables and then have them in line with my HTML like so:
<tr>
<td align="right">Restaurant Subtotal</td>
<td align="right"><strong><? $subTotal = getSubTotal(); echo money($subTotal);?></strong></td>
</tr>
I have a need to send the generated HTML to a Web Service API and want to know if there is an easy way to do it. The API only requires the HTML. IT cannot have any embedded PHP of course.