Hi,
I'm trying to modify a perl cgi script so that it generates HTML at this one part.
Right now what gets printed out is like this:
Description = O'Reilly Book
What I'd like it to be like is within an HTML table like this:
<table>
<tr><td>Description&am p;lt;/td> <td>O'Reilly Book</td></tr>
</table>
I am able to get the code in the 2nd field like this:
Description = </td><td>O'Reilly Book</td></tr>
What do I need to do to the following code to add: <tr><td> BEFORE the Description field. Here is the code:
<BLOCKQUOTE><font size="1"face="Geneva, Verdana, Arial">code:</font><HR><pre><font size=1 face=courier>
$text .=
&format_text_field($sc_order_form_array{$form_ field})
. <font color = red>"</td><td>= $form_data{$form_field}</td></tr>\n"</font>; }
</font>[/code]
Thanks for any help.