Module 6

PHP Solutions:

A. PHP server scripts are surrounded by delimiters, which one?

<?php…?>

B. How do you write “Hello World” in PHP

echo “Hello World”;

All variables in PHP start with which symbol?

$

D. What is the correct way to end a PHP statement?

;

CSS Solutions:

A. What is the correct CSS syntax for making all the <span> elements bold?

span {font-weight:bold}

B. What property is used to change the text color of an element?

font-color:

C. The # symbol specifies that the selector is?

ID

Leave a comment