| 
#!/usr/bin/php<?php
 
 require_once '../include/class.dialog.php';
 
 $options = array(
 'backtitle' => "Example: Calendar Dialog",
 'title'        => 'Calendar Example'
 );
 
 $dialog = Dialog::factory('calendar', $options);
 
 $dialog->setCaption('Select your birthday:');
 $date = $dialog->show();
 
 system('clear');
 if (!$date) {
 die("You pressed the ESC key...\n");
 }
 die("You was born on $date\n");
 
 |