#!/usr/bin/php 
<?php 
 
require_once '../include/class.dialog.php'; 
 
$dialog = Dialog::factory('inputbox', array( 
    'backtitle' => 'Input Box' 
)); 
 
$dialog->setCaption('What is your name?'); 
$name = $dialog->show(); 
 
system('clear'); 
echo "\n\nYour name is: '$name'\n\n"; 
 
 |