Term
|
Definition
|
|
Term
|
Definition
|
|
Term
Prints a string as text/integer to screen |
|
Definition
|
|
Term
Putting variables in double quotes prints them literally. True or false? |
|
Definition
|
|
Term
The two methods of sending form data to the server |
|
Definition
|
|
Term
The constant variable used to fetch data from a POST |
|
Definition
|
|
Term
Write the code to echo the word "PUPPY" |
|
Definition
|
|
Term
Write the code to set the variable $host_name, to data from a form named "hostname" |
|
Definition
$host_name = '$_POST['hostname']; |
|
|
Term
Write the code to concatenate the variable $dog before the string "is a dog" |
|
Definition
|
|
Term
What is the MYSQL command to connect to a database |
|
Definition
|
|
Term
What is the MYSQL command to put data into a database |
|
Definition
|
|
Term
Write a mysql INSERT command in blank, putting data into two columns |
|
Definition
INSERT INTO table_name (column1, column2) VALUES ('value1', 'value 2'); |
|
|