Callback

This is a demonstration of the telephone callback Contacular form type.

The telephone callback form type is super simple, as it only asks users (and potential customers) for their name and telephone number. This is then zapped off to you, so you can follow up as soon as possible.

<? 
$form 
= new ContacularForm("callback");          // Create a new Contacular Form
$form->addRecipient("foobar@contacular.co.uk");  // Add a recipient
if ($form->processResponse($_POST))              // If processed form response,
{
        echo 
"Thanks. We will call you back";    // display a relevant message.
        
echo " within the next 24 hours.";      
}
else                                             
// If response not processed,
{
        echo 
$form->getErrors();                 // show any validation errors
        
echo $form->getCode();                   // and output form HTML code.
}
?>

The code above produces the simple Contacular telephone callback form you see below. It is a very quick call to action for any visits to your site.

Powered by Contacular