Example #1
0
<?php

/**
 * Created by PhpStorm.
 * User: Siddhant Mehta
 * Date: 1/5/2015
 * Time: 5:21 PM
 */
include "OperatorDO.php";
$operatorDO = new OperatorDO();
$operators = $operatorDO->getAll();
$x = 0;
$c = count($operators);
print "[";
while ($x < $c) {
    $operator = $operators[$x];
    $isBlocked = $operator->isBlocked ? "true" : "false";
    print "{";
    print "\"username\":\"{$operator->username}\",";
    print "\"password\":null,";
    print "\"employeeId\":\"{$operator->employeeId}\",";
    print "\"name\":\"{$operator->name}\",";
    print "\"isBlocked\":\"{$isBlocked}\"";
    if ($x < $c - 1) {
        print "},";
    } else {
        print "}";
    }
    $x++;
}
print "]";
Example #2
0
$username = $_POST["username"];
$password = $_POST["password"];
$employeeId = $_POST["employeeId"];
$name = $_POST["name"];
$isBlocked = $_POST["isBlocked"];
if (strcmp($isBlocked, "true") == 0) {
    $isBlocked = true;
} else {
    $isBlocked = false;
}
$operator = new Operator();
$operator->username = $username;
$operator->password = $password;
$operator->name = $name;
$operator->employeeId = $employeeId;
$operator->isBlocked = $isBlocked;
$operatorDO = new OperatorDO();
try {
    $operatorDO->add($operator);
    ?>
    {
    "successful":true,
    "message":"Operator added"
    }
<?php 
} catch (DOException $doException) {
    print "{";
    print "\"successful\":false,";
    print "\"message\":\"" . $doException->__toString() . "\"";
    print "}";
}