NEW
Font size
WorksheetsWho Wants To Be a Programmer?
Total questions: 10
Worksheet time: 5mins
Apakah kepanjangan dari PHP?
PHP: Hypertext Markup Language
PHP: Cascading Style Sheet
PHP: Hypertext Preprocessor
PHP: Hypertext Processor
Kode program PHP dijalankan pada sisi?
On the client's web browser
On the server where the website is hosted
On the client's CPU
On the Internet
Websites that contain PHP coding have what file extension?
index.html
index.php
index.htmlphp
index.ppt
What is the main reason people use PHP?
The language is flexible and highly dynamic
It looks better than other internet-based languages
It's easy
Because it's free
How is PHP written into a webpage?
Just like other html tags: <php> </php>
Only in a separate file which is linked to the html page
Using curled brackets {php} {/php}
A PHP script starts with <?php and ends with ?>
//comments written like this only span one line
True
False
Each line of PHP code ends in what symbol?
semicolon ;
colon :
square bracket ]
none, there is no symbol
PHP is case sensitive in what way?
It's never case sensitive, don't worry about it.
Only when referring to variables
When referring to classes, functions or variables
All the time!
When concatenating strings, you use what symbol in PHP?
A comma ,
A plus sign +
a hyphen -
a full stop .
What symbol represents the name for a variable?
$variable
#variable
!variable
?variable
