Register below and we will email you a whole years free subscription to ezBooks, unlocking your systems BAS, payroll, fixed asset and other advanced features.
You can use ezBooks without your accountant having to
prepare a chart of account, or give you special training.
You shouldn't need to do a TAFE course to use an accounting package,
and now you don't. Use ezBooks instead.
add_element(array("name"=>"name",
"type"=>"text",
"size"=>"25",
"minlength"=>"1",
"length_e"=>"Please enter your name",
));
//ABN
$f->add_element(array("name"=>"ABN",
"type"=>"text",
"size"=>"25",
));
//email address
$f->add_element(array("name"=>"email",
"type"=>"text",
"size"=>"25",
"minlength"=>"1",
"length_e"=>"Please enter your email address",
"valid_regex"=>"^[-a-zA-Z0-9._]+@[-a-zA-Z0-9]+(\.[-a-zA-Z0-9]+)+$",
"valid_e"=>"Invalid email address."
));
// consent to receive emails
$f->add_element(array("name"=>"email_me",
"type"=>"checkbox",
"value"=>"Y",
"checked"=>"0"
));
// submit button
$f->add_element(array("name"=>"submit",
"type"=>"submit",
"value"=>"Submit"
));
if(isset($submit)) {
if($err = $f->validate()) {
$f->load_defaults();
} else {
$f->freeze();
$err = "Success !" ;
}
}
// Show the form
$f->start('specialForm','','special2.html','','specialForm');
?>
Contact Name
show_element("name");
?>
A.B.N.
show_element("ABN");
?>
email address
show_element("email");
?>
Tick below if you want us to send further information
show_element("email_me");
?>
show_element("submit");
?>
finish();
?>