What are variables? How can define static variables? Write a PHP program to illustrate the use of Switch statement.
How can you store string type data in an array? Write a PHP program to illustrate use of extract and compact functions for conversion between arrays and variables.
Consider you have a login form having username, password fields, login and cancel buttons. Now, write a PHP program for implementing login form. The login should be redirected to home.php upon successful login button event. The cancel button should clear the form form field values upon its submission.
Attempt any Eight questions
[8x5=40]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.
Write a PHP program that will contain a concat strings function. The funcation should have two arguments st1 and st2 of type string and should return st3 which is concatenation of str1 and st2.
Write PHP program to extract subset of a array using array_slice() function.
Describe an anonymous class using suitable example.
Write a PHP program for illustrating the starting and ending of session.
How can you query a database in PHP?
How can you retrieve the form data? Illustrate with example.
What is error handler? Write a PHP program to show use of error handler to format and print errors.
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
}