Discussion Questions:

1. In Dreamweaver, which tab in Applications lets you automate the insert record query from a form?
Server Behaviors

2. In PHP, how could you send an error message to a different page using GET?

<? php
if ( (isset($_GET['login'])) AND ($_GET['login'] == 'fail') )
{
$formFeedback = 'Apparently you did not show up in our records. Please check your username and password and try again';
}
?>