Example 9-5. pc_print_form( )
function pc_print_form($errors) {
$fields = array('name' => 'Name',
'rank' => 'Rank',
'serial' => 'Serial');
if (count($errors)) {
echo 'Please correct the errors in the form below.';
}
echo '<table>';
// print out the errors and form variables
foreach ($fields as $field => $field_name) {
// open row
echo '<tr><td>';
// print error
if (!empty($errors[$field])) {
echo $errors[$field];
} else {
echo ' '; // to prevent odd looking tables
}
echo "</td><td>";
// print name and input
$value = isset($_REQUEST[$field]) ?
htmlentities($_REQUEST[$field]) : '';
echo "$field_name: ";
echo "<input type=\"text\" name=\"$field\" value=\"$value\">";
echo '</td></tr>';
}
echo '</table>';
}
The complex part of pc_print_form( ) comes from
the $fields array. The key is the variable name;
the value is the pretty display name. By defining them at the top of
the function, you can create a loop and use
foreach to iterate through the values; otherwise,
you need three separate lines of identical code. This integrates with
the variable name as a key in $errors, because you
can find the error message inside the loop just by checking
$errors[$field].
If you want to extend this example beyond input
fields of type text, modify
$fields to include more meta-information about
your form fields:
$fields = array('name' => array('name' => 'Name', 'type' => 'text'),
'rank' => array('name' => 'Rank', 'type' => 'password'),
'serial' => array('name' => 'Serial', 'type' => 'hidden')
);