PHP Interview Question and Answers
81. |
What is the name of the scripting engine that powers PHP? |
|
PHP is a scripting engine called the Zend Engine 2. |
|
|
82. |
What are the differences between require and include? |
|
- Both include and require used to include a file but when included file not found.
-
Include send Warning where as Require send Fatal Error.
|
|
|
83. |
Which MySQL function would you use to select a database? |
|
The mysql_select_db() function attempts to select a database. |
|
|
84. |
Which function would you use to format date information? |
|
The date() function is used to format a date. |
|
|
85. |
What are the method available in form submitting? |
|
There are the method available in form submitting are :
- GET
- POST
|
|
|