Untitled

 avatar
unknown
plain_text
3 years ago
555 B
11
Indexable


include_once '../class/employees.php';



    $database = new Database();

    $db = $database->getConnection();



    $item = new Employee($db);



    $data = json_decode(file_get_contents("php://input"));



    $item->name = $data->name;

    $item->email = $data->email;

    $item->age = $data->age;

    $item->designation = $data->designation;

    $item->created = date('Y-m-d H:i:s');

    

    if($item->createEmployee()){

        echo 'Employee created successfully.';

    } else{

        echo 'Employee could not be created.';

    }

Editor is loading...