PHP Classes

File: examples/blog/js/jquery-validate/demo/form.php

Recommend this page to a friend!
  Classes of Haseeb Ahmad Basil   PHP Skeleton Framework   examples/blog/js/jquery-validate/demo/form.php   Download  
File: examples/blog/js/jquery-validate/demo/form.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Skeleton Framework
Extensive Web application development framework
Author: By
Last change:
Date: 8 years ago
Size: 248 bytes
 

Contents

Class file image Download
<?php
// wait a second to simulate a some latency
usleep(500000);
$user = $_REQUEST['user'];
$pw = $_REQUEST['password'];
if(
$user && $pw && $pw == "foobar")
    echo
"Hi $user, welcome back.";
else
    echo
"Your password is wrong (must be foobar).";
?>