What does PHP stand for?
PHP server scripts are surrounded by delimiters, which?
How do you write "WELCOME" in PHP
All variables in PHP start with which symbol?
How can we test if two object are refering to the same instance of the same class in PHP?
The PHP syntax is most similar to:
How do you get information from a form that is submitted using the "get" method?
When using the POST method, variables are displayed in the URL:
In PHP you can use both single quotes ( ' ' ) and double quotes ( " " ) for strings:
Include files must have the file extension ".inc"
What is the correct way to include the file "time.inc" ?
What is the correct way to create a function in PHP?
What is the correct way to open the file "time.txt" as readable?
PHP allows you to send emails directly from a script
Which superglobal variable holds information about headers, paths, and script locations?
What is the correct way to add 1 to the $count variable?
What is a correct way to add a comment in PHP?
PHP can be run on Microsoft Windows IIS(Internet Information Server):
The die() and exit() functions do the exact same thing.
Which one of these variables has an illegal name?
The setcookie() function must appear BEFORE the <html> tag.
In PHP, the only way to output text is with echo.
How do you create an array in PHP?
The if statement is used to execute some code only if a specified condition is true
Which operator is used to check if two values are equal and of same data type?
How will we execute a PHP script from the Command line?
How to run the interactive PHP shell from the command line interface?
Pick the difference between PHP 4 and PHP 5?
Does PHP supports multiple inheritance ?
In which version final keyword is available in PHP?
Which methods are needed when passing values through a form or an URL in PHP?
Which library is needed to be able to use image function in PHP?
What is the use of the function ‘imagetypes()’ in PHP?
What is the function to be used to get the image size in PHP?
What is the function to be used to get the image width in PHP?
What is the function to be used to get the image height in PHP?
Pick the difference between include() and require() functions in PHP?
Pick the difference between require() and require_once() in PHP?
Pick the difference between include_once() and include() in PHP?
What are the possible methods to display text in PHP?
How can we set an infinite execution time for PHP script?
What is use of file_get_contents() function in PHP?
Which function is used to connect to a MySQL database in PHP?
What is use of mysql_pconnect() function in PHP?
How can we know the number of rows returned in result set in PHP?
Which function gives us the number of entries affected by a query in PHP?
pick the difference between mysql_fetch_object() and mysql_fetch_array() in PHP?
Which function is used to check the value of a given variable is a number in PHP?
Which function is used to check the value of a given variable is alphanumeric in PHP?
What is the correct way to end a PHP statement?