Suppose that we create a form element using:
$lastname = new Text("lastname",array('placeholder' => 'Lastname','name' => "customerLastname"));
This will create a form input element with the name customerLastname, so far so good. But when you bind the $_POST variable to the form it will not recognise the field. Any ideas how to name a field differently in the form then how it was defined in the model ?