Attempt any Eight questions.
[8*5=40]
4.
How are comments written in PHP? Write a PHP program that will read your name and roll number and print the values. Label your program with appropriate comments. [5]
5.
Write a PHP program that will contain a concat string function. The function should have two arguments st1 and st2 of type string and should return st3 which is concatenation of st1 and st2. [5]
6.
Write a PHP program to extract subset of a string array using array_slice() function. [5]
7.
Describe an anonymous class using suitable example. [5]
8.
Write a PHP program for illustrating the starting and ending of session. [5]
9.
How can you query a database in PHP? [5]
10.
How can you retrieve the form data? Illustrate with example. [5]
11.
What is error handler? Write a PHP program to show use of error handler to format and print errors. [5]
12.
For the following JSON file named BIT.JSON, write a PHP program to read information from this JSON file: {Name: "Gunadi", Email: "Gunadi@gmail.com", Dob: "January 1", Age: 30} [5]