';
echo "\n".'
Problem
';
foreach($errors as $key => $val) {
echo "\n".'
- ';
echo "\n".''.$this->fdd[$key]['name'].'';
echo "\n".'
'.$val;
if($opts['fdd']['default'] = ''){
echo "\n".'
The default value for '.$this->fdd[$key]['name'].' is '.$opts['fdd']['default'];
}
echo "\n".'
Help: '.$this->fdd[$key]['help'];
echo "\n".'
Maximum length '.number_format($this->fdd[$key]['maxlen']).' characters';
echo "\n".'
';
}
// It may be best to force the user to Go Back, as opposed to recreating the form.
echo "\n".'

';
echo "\n".'
';
// $this->operation = $this->labels['Add']; // language unspecific, emulating moreadd/more button
// $this->recreate_fdd();
// $this->recreate_displayed();
// return false; // stopping the insert proccess
require_once('./inc/footer2.php');
exit;
}
?>