RS Learning Lab – Learning Passport

A growth-based learning profile (Not a marksheet)

Student Details

Name: {$student_name}
Roll No: {$roll_no}
Class: {$class}

Learning Style Profile

Primary Learning Style: {$primary_style}

Secondary Learning Style: {$secondary_style}

Learning Signals

Learning Effectiveness Index (LEI)

LEI Signal: {$lei_signal}

LEI reflects learning consistency and improvement patterns. This is an internal growth signal, not a score or rank.

Important Note

This Learning Passport focuses on how a student learns, how they improve through practice, and how they apply concepts.

This document is not an examination result, marksheet, or government certificate.

"; // ------------------------------- // WRITE TEMP HTML // ------------------------------- file_put_contents($tmpHtml, $html); // ------------------------------- // GENERATE PDF USING WKHTMLTOPDF // ------------------------------- //$wkhtml = "wkhtmltopdf"; //$command = "$wkhtml \"$tmpHtml\" \"$outputPdf\""; //shell_exec($command); echo $html; exit; // ------------------------------- // SERVE PDF FOR DOWNLOAD // ------------------------------- if (file_exists($outputPdf)) { header('Content-Type: application/pdf'); header('Content-Disposition: inline; filename="Learning_Passport.pdf"'); readfile($outputPdf); exit; } else { echo "PDF generation failed."; }