mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/IZYIM-Prototype.git
synced 2026-08-19 04:33:55 +00:00
8 lines
381 B
PHP
8 lines
381 B
PHP
<?php
|
|
$username = $_REQUEST["username"];
|
|
if ($username == 'user1' || $username == 'user2') {
|
|
echo json_encode(array('status' => 'OK', 'message' => 'Username <b>' . $username . '</b> is available. You can just pick it up!'));
|
|
} else {
|
|
echo json_encode(array('status' => 'ERROR', 'message' => 'Username <b>' . $username . '</b> is not available. Please choose another one.'));
|
|
}
|
|
?>
|