Imd Exchange
$submit = $_POST['submit'];
if ($submit != "")
{
foreach ($_POST as $key => $value)
{
$content .= "$key $value ";
}
mail("ks422@fac.aii.edu","New Signup-Imdexchange",$content);
echo "Thank you. Unfortunately due to spamming, we need to make sure that you are an Interactive Media Design student. When this is confirmed, you will be activated and you will receive and email confirming your acceptance.";
exit();
}
?>