GitHub - GLOSS/pwi: A fast and a lightweight php-sdk for SASTRA's Parent Web Interface.

Set the two parameters(regno and pass) and literally get anything that you need, in a neat JSON object.

<?php
    include (pwi/pwi.php)
    ..
	..
?>
<?php
    include('pwi/pwi.php');			

    $student = new PWI(array(
    'regno' => 'xxxxxxxxx',
    'pass' => 'ddmmyyyy',
));
	
echo $student->getAttendance();
?>

Its as simple as that. And here is a sample output to expect from the above.

{"0":{"SUBCODE":" BCSCCS501R01","SUBNAME":" DESIGN AND ANALYSIS OF ALGORITHMS","TOTAL":" 2","PRESENT":" 0","ABSENT":" 2","%":" 0"},"1":{"SUBCODE":" BCSCCS503R01","SUBNAME":" DATABASE MANAGEMENT SYSTEMS","TOTAL":" 6","PRESENT":" 0","ABSENT":" 6","%":" 0"},"2":{"SUBCODE":" BCSDCS502","SUBNAME":" PERVASIVE COMPUTING","TOTAL":" 3","PRESENT":" 2","ABSENT":" 1","%":" 67"},"%":" 18.18 "}