PHP stand for is the acronyem for which of the following?
PHP: Hypertext Preprocessor
Private Home Page
Proprietaty Home Page
Personal Hypertext Processor - Answers PHP: Hypertext Preprocessor
PHP server scripts are surrounded by delimiters, which? - Answers <?php...?>
How do you write "Hello World" in PHP?
"Hello World";
printf "Hello World";
Document.Write("Hello World");
echo "Hello World"; - Answers echo "Hello World";
All variables in PHP start with which symbol?
!
&
$
# - Answers $
What is the correct way to end a PHP statement?
:
;
,
, </php> - Answers ;
The PHP syntax is most similar to:
VBScript
Perl and C
JavaScript
HTML - Answers Perl and C
How do you get information from a form that is submitted using the "get" method?
Request.Form;
GET_INFO
$_GET[];
Request.QueryString; - Answers $_GET[];
When using the POST method, variables are displayed in the URL:
True
False - Answers False
In PHP you can use both single quotes ( ' ' ) and double quotes ( " " ) for strings:
True
False - Answers True
Include files must have the file extension ".inc" - Answers False
What is the correct way to include the file "time.inc" ? - Answers <?php include "time.inc"; ?>
What is the correct way to create a function in PHP?
new_function myFunction()