Skip to content

Instantly share code, notes, and snippets.

@steveu
Created May 5, 2011 20:58
Show Gist options
  • Save steveu/957913 to your computer and use it in GitHub Desktop.
Save steveu/957913 to your computer and use it in GitHub Desktop.
<?php
$config = array(
'title' => 'Setup your account',
'buttonTitle' => 'Register',
'redirect' => '/thanks/',
'showShortErrors' => true,
'dbTable' => 'users',
'onlyInsert' => true,
'fieldsets' => array(
'example' => array(
'legend' => false,
'fields' => array(
'name' => array(
'type'=>'text', 'label'=>'Name','req'=>true,
),
'email' => array(
'type'=>'text', 'label'=>'Email',
'req'=>true, 'regex'=>'email',
'unique' => array(
'field' => 'email',
'match' => array(
'active' => 'Y',
),
),
),
),
),
),
);
$form = new FormBuilder_Database($config);
$form->autoProcess();
echo $form->build();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment