<?php
/**
* Example of how your template file must be.
* It must be an array name $Template with the following fields
*/
$Template = array(
'template_open' => '<tr>',
'template_label' => '<td valign="top" align="right">' . AURIUMFORM_TP_LABEL . '</td>',
'template_field' => '<td>' . AURIUMFORM_TP_FIELD,
'template_error' => '<BR><font class="error">- ' . AURIUMFORM_TP_ERROR . '</font>',
'template_close' => '</td></tr>',
'template_line' => "\n",
'template_field_one' => '<tr><td colspan="2" align="center">' . AURIUMFORM_TP_LABEL . AURIUMFORM_TP_FIELD . '</td></tr>'
);
?> |