#!/usr/bin/php 
<?php 
 
require_once '../include/class.dialog.php'; 
 
$dialog = Dialog::factory('password', array( 
    'backtitle' => 'Password' 
)); 
 
$dialog->setCaption('Password:') 
       ->showAsterisks(true); 
 
$pwd = $dialog->show(); 
 
system('clear'); 
echo "\n\nPassword: '$pwd'\n\n"; 
 
 |