Home

Type in the text box.

<?require_once("../../qutags.php")?>

<?
/* QuTags <qutags@quantumquinn.com>
 * provided by C. Bess courtesy of Quantum Quinn AJAX for PHP live demo - 1.0.1
 */

init_qutags(array("qucomm"=>"../../"));

function txtKeyUp( $id )
{
        $text = $_POST[$id];
       
        if ( strlen($text) >= 21 )
                return;
       
        if ( $text == "" )
                send_quinnerhtml("outmsg", "Nothing...");
        else
                send_quinnerhtml("outmsg", "You typed: ".$_POST["txt"]);
}

quform_start();

echo "Type in the text box.<br/>";

qudiv("outmsg");

qutextbox("txt", array(onkeyup=>"txtKeyUp", 'size'=>20, 'maxlength'=>20));

quform_end();
?>