13) Using a PHP code to do the followings:
To be able to display the output directly to
the browser, we have to use the special
tags \<?= and \?>.
10) What is the main difference between
PHP 4 and PHP 5?
PHP 5 presents many additional OOP
(Object Oriented Programming) features.
11) Is multiple inheritance supported in
PHP?
PHP supports only single inheritance; it
means that a class can be extended from
only one single class using the keyword
'extended'.
12) What is the meaning of a final class and
a final method?
'final' is introduced in PHP5. Final class
means that this class cannot be extended
and a final method cannot be overridden.
1. Create a database called UNIVERSITY. (user name = root, password = "")
2. Create a table called STUDENT inside the UNIVERSITY database with the following fields:
[stNo, name, age, average], stNo is the primary key
3. Use the following Form to insert data inside the table. Note the followings:
4. Use the following Form to print information about all students whose average is greater than the
inserted average:
Average
List of students who are greater than the inserted
average
Number
Name
Average
Age
Search