Midterm Exam Study Guide
Notes
- Not everything listed here may be on the exam
- You will be able to use notes and your Virtual Machine to test and verify code
- You will be given two hours of class time to answer the questions and will turn in the results on BlackBoard
Examples and things to consider
- Be able to describe the different kinds of variables being used. Are they scaler? What are their data types?
e1sample1.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 | <html>
<body>
<?php
// Code sample 1
$var_a = 'Fred';
$var_b = "Barney";
$var_c = 123;
$var_d = 456;
print 'Variable a is $var_a';
echo "<br />";
echo "Variable b is $var_b<br/>";
?>
</body>
</html>
|
- How does this html relate to the PHP script below it? What are the variables the PHP script should expect to recieve.
e1sample2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 | <html>
<head>
<title>Sample2 HTML Form</title>
</head>
<body bgcolor="lightblue">
<form action="e1sample2.php" method="POST">
<p>
please enter your name: <br />
<input type="text" size=30 name="userName" />
<br />
please enter your phone number: <br />
<input type="text" size=30 name="userPhone" />
<br />
<input type=submit value="submit" />
</p>
</form>
</body>
</html>
|
- Be able to describe each line of the following PHP script. What is an issue you may have with using extract over specifying which form elements to get data from?
NOTE: Look up items in the PHP Manual if you're not sure what they are or how they work!
e1sample2.php
| <?php
// This is the PHP script that processes the form: simple.html
extract($_REQUEST);
print 'Your name is: '. $userName .'<br />';
print "Your phone number is: $userPhone<br />";
?>
|
- Be able to understand the types of loops and how they work.
e1sample3.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36 | <html>
<head>
<title>Sample 3</title>
</head>
<body>
<h2>Celsius to Farenheit Conversion</h2>
<table>
<tr><th>Celsius</th><th>Farenheit</th><tr>
<?php
$C = -50;
while ($C < 100)
{
$F = ($C * 1.8) + 32;
print "<tr><td>$C</td><td>$F</td>";
if ($F == 32)
{
break;
}
$C += 5;
}
?>
</tr>
</table>
<table>
<tr><th>Celsius</th><th>Farenheit</th><tr>
<?php
for ($C = -50; $C < 100; $C += 5)
{
$F = ($C * 1.8) + 32;
print "<tr><td>$C</td><td>$F</td>";
}
?>
</tr>
</table>
</body>
</html>
|
- Be able to describe how the array and loop are working.
e1sample4.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31 | <html>
<head><title>Sample 4</title>
</head>
<body>
<?php
$colors = 'red green orange blue';
echo '$colors is a '. gettype($colors) .'<br />';
$employee = array('Name' => 'Jon Doe',
'ID' => '23d4',
'Job Title'=> 'Designer',
'Department'=>'Web Development');
$colors = explode(" ", $colors);
echo 'After explode(): $colors is an '. gettype($colors) .'<br />';
echo "<hr>";
foreach ($colors as $value)
{
echo "$value <br />";
}
echo "<hr>";
foreach ($employee as $key => $value)
{
echo "employee[$key] => $value<br />";
}
?>
</body>
</html>
|
- Be able to explain the two kinds of arrays and how to get data out of them.
e1sample5.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 | <?php
$items = array("milk", "eggs", "cheese", "bacon");
$person = array("name"=>"maggie simpson",
"email"=>"maggiesimpson@madisoncollege.edu", "id"=>1);
foreach($person as $attr=>$val)
{
printf("key: %s<br />value: %s<br /><hr />", $attr, $val);
}
$i = 0;
while($i < count($items))
{
echo $items[$i];
echo "<br />";
$i++;
}
?>
|
- Be able to describe the HTML form and it’s PHP counter part, what variables are being passed, etc.
e1sample6.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 | <html>
<head><title>Sample 6</title></head>
<body>
<form action="e1sample8.php" method="POST">
<p>
Enter your name:<br />
<input type="text" size=50 name="userName" />
</p><p>
Enter your phone:<br />
<input type="text" size=50 name="userPhone" />
</p><p>
Enter your email address:<br />
<input type="text" size=50 name="userEmail" />
</p><p>
<input type="hidden" name="formName" value="sample8" />
<input type="hidden" name="createDate" value="March 2008" />
<input type=submit name="send" value="submit" />
<input type=reset value="clear" />
</form>
</body>
</html>
|
e1sample6.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28 | <html>
<head><title>Sample 6</title></head>
<body>
<?php
if ((!empty($_GET)) ||
(!isset($_POST['formName'])) ||
($_POST['formName'] != 'sample8'))
{
die("Bad input data source<br />");
}
$name = $_POST['userName'];
$phone = $_POST['userPhone'];
$email = $_POST['userEmail'];
?>
<div align="center">
<table>
<tr><td>
Welcome to PHP, <em><?php echo $name; ?>.</em>
</td></tr><tr><td>
Can I call you at <em><?php echo $phone; ?>? </em>
</td></tr><tr><td>
Is it OK to send you email at <em><?php echo $email; ?>?</em>
</td></tr>
</table>
</div>
</body>
</html>
|
- Understand what each of the mysql commands is doing and what output it might produce.
Sample 7 - SQL example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 | $ mysql -u student -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.0.45 MySQL Community Server (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> use sample7db;
Database changed
GRANT ALL PRIVILEGES ON sample3db.* TO 'bob'@'localhost' IDENTIFIED BY 'guess';
Query OK, 0 rows affected (0.00 sec)
mysql> set password for bob@localhost = password('robert');
Query OK, 0 rows affected (0.00 sec)
mysql> DELETE FROM mysql.user WHERE user = 'bob';
Query OK, 1 row affected (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
|
- Understand what each of the PHP file functions do, and what is the purpose and location of
$_SERVER['DOCUMENT_ROOT']
on your Virtual Machine (VM).
e1sample8.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30 | <html>
<head>
<title>Sample 8 Script</title>
</head>
<body bgcolor="lavender">
<?php
$filename = $_SERVER['DOCUMENT_ROOT'] .'/files/data.txt';
if (!file_exists($filename))
{
exit("No such file as: $filename");
}
$fh = fopen($filename,'rb');
while(! feof($fh))
{
$line = fgets($fh);
print $line .'<br />';
}
fclose($fh);
$lines = file($filename);
foreach ($lines as $line_num => $line)
{
$line_num++;
echo '<b>'. $line_num .'</b>: '. $line .'<br />';
}
?>
</body>
</html>
|