EXTECH Certifications & Technology Services Pvt. Ltd.

Client Verification Portal

Verify Certificate

No record found
Client Name Certificate Type Certificate No Standard Date of Issue
connect_error) { die(json_encode(["status"=>"error"])); } $certNo = $_GET['certNo']; $sql = "SELECT * FROM clients WHERE certificate_no='$certNo'"; $result = $conn->query($sql); if ($result->num_rows > 0) { $row = $result->fetch_assoc(); echo json_encode([ "status"=>"success", "client_name"=>$row['client_name'], "certificate_type"=>$row['certificate_type'], "certificate_no"=>$row['certificate_no'], "standard"=>$row['standard'], "issue_date"=>$row['issue_date'] ]); } else { echo json_encode(["status"=>"fail"]); } $conn->close(); ?>