Quiz Flashcards
define function in PHP
function functionName(parameters) { function body}
php variables start with what symbol
$
what does a semicolon signify at the end of statement?
end of a php statement or instruction
valid header for a function in PHP
function testFunc()
valid PHP var name
$myVar
join strings in PHP
$myVar3 = “aaaa” . “bbb”;
use the include command
require “example.php”;
data type of $aVariable = “Robert”;
string (text variable)
standard form php scripting block
<?php … ?>
extension of file php code
.php
how to connect to mysql database using php’s PDO class?
$dbCon = new PDO(“mysql:host=”.$host.”;dbname=”.$dbName, $username, $password);
correct output of:
<?php
if (true) {
echo “hello”;
} else {
echo “hi”;
}
?>
hello