summaryrefslogtreecommitdiff
path: root/bug/bug/jquery-validation-1.8.1/demo/milk/users.php
diff options
context:
space:
mode:
authorLoic Dachary <loic@dachary.org>2011-09-13 23:12:49 +0200
committerLoic Dachary <loic@dachary.org>2011-09-13 23:12:49 +0200
commit8f2e8e7dc5334edfea6a7d23f5b901f286fda6d4 (patch)
tree9800bf6cd95b081f977f7d5539f0f6a3de965823 /bug/bug/jquery-validation-1.8.1/demo/milk/users.php
parent905c1103d30a2b0651ab57316ebc51a51e2bb8f7 (diff)
draft implementation of http://wiki.documentfoundation.org/QA-Projects-Incubator#Bug_Submission_Assistant
Diffstat (limited to 'bug/bug/jquery-validation-1.8.1/demo/milk/users.php')
-rw-r--r--bug/bug/jquery-validation-1.8.1/demo/milk/users.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/bug/bug/jquery-validation-1.8.1/demo/milk/users.php b/bug/bug/jquery-validation-1.8.1/demo/milk/users.php
new file mode 100644
index 0000000..4fef967
--- /dev/null
+++ b/bug/bug/jquery-validation-1.8.1/demo/milk/users.php
@@ -0,0 +1,12 @@
+<?php
+$request = trim(strtolower($_REQUEST['username']));
+//sleep(2);
+usleep(150000);
+$users = array('asdf', 'Peter', 'Peter2', 'George');
+$valid = 'true';
+foreach($users as $user) {
+ if( strtolower($user) == $request )
+ $valid = 'false';
+}
+echo $valid;
+?> \ No newline at end of file