Mailing List

Periodically, we send emails to members of our email list. Members receive notices of upcoming sales and specials. Complete the form below to signup for the mailing list.

[insert_php]

if ( $_SERVER[‘REQUEST_METHOD’] == “POST” )
{
$insert = mysql_query(“INSERT INTO mailinglist (id,name,email) VALUES (0,\”$_POST[name]\”,\”$_POST[email]\”)”);
print “

Thank you!

“;
print “You’ve been added to the mailing list. You will receive notices of upcoming sales and specials.”;
}
else
{
print<< Name: Email Address:

END;
}
[/insert_php]