Inizializzazione
This commit is contained in:
10
jquery/jquery-validation-1.9.0/demo/form.php
Normal file
10
jquery/jquery-validation-1.9.0/demo/form.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?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).";
|
||||
?>
|
||||
Reference in New Issue
Block a user