0byt3m1n1
Path:
C:
/
GEOMATICS 23-01-2021
/
LAN
/
CPMS
/
ADMIN
/
[
Home
]
File: createpi_ctrl.php
<?php require_once "../model/employee_mdl.php"; $pi=@$_POST['txtpi']; //---------Null---/ if($pi=="") { $error['pi_null']="Please Enter PI name"; $error_flag=1; } $result=Employee::piNameCheck($pi); If($result=="True") { $error_flag=1; $error['pi_exist']="PI name exists. Please enter a different name."; } if($error_flag==1) { include("createpi.php"); exit(); } else { $result= Employee::addPI($pi); if ($result=="True") { $message="Registration Completed successfully.."; include("createpi.php"); exit(); } else { $message="Registration Failed. Invalid charactors found."; include("createpi.php"); exit(); } } ?>