Posted inServices 2nd result.Php <?php// 2. Base classclass User { public $name; public $email; function __construct($name, $email) { $this->name = $name; $this->email = $email; }}// 2. Subclassclass Student extends User { public $marks =… Posted by Shahidh August 1, 2025
Posted inServices 1st index.php <!DOCTYPE html><html><head> <title>Student Grade Form</title></head><body> <h2>Student Grade Form</h2> <form action="result.php" method="post"> Name: <input type="text" name="name" required><br><br> Email: <input type="email" name="email" required><br><br> … Posted by Shahidh August 1, 2025