Section 1

Preview this deck

PHP server scripts are surrounded by delimiters, which?

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (12)

Section 1

(12 cards)

PHP server scripts are surrounded by delimiters, which?

Front

<?php ...?>

Back

What is the correct way to add 1 to the $count variable?

Front

$count++;

Back

In PHP, the only way to output text is with echo.

Front

True

Back

The die() and exit() functions do the exact same thing.

Front

True

Back

Which one of these variables has an illegal name?

Front

$my-Var

Back

All variables in PHP start with which symbol?

Front

$

Back

What does PHP stand for?

Front

Hypertext Preprocessor

Back

How do you write "Hello World" in PHP

Front

echo "Hello World";

Back

What is the correct way to end a PHP statement?

Front

;

Back

What is a correct way to add a comment in PHP?

Front

/.../

Back

When using the POST method, variables are displayed in the URL:

Front

True

Back

In PHP you can use both single quotes ( ' ' ) and double quotes ( " " ) for strings:

Front

True

Back