We're developing this project with financial support of the European Union, Central Government and the Province Noord-Brabant.
SunShade is part of this exhibition in New York.
Leave your e-mail address behind, so we can inform you about the developments of this project:
$lianne = "sunshade@liannevangenugten.nl";
$verzend_knop_tekst = "Keep me informed";
$geen_naam_ingevuld = "You didn't wright your name!";
$geen_email_ingevuld = "You didn't wright your e-mail!";
$ongeldige_email_ingevuld = "This e-mail address is not valid!";
$gelukt = "we'll keep you informed.
Thank you!";
function checkmail($mail) {
$email_host = explode("@", $mail);
if (isset($email_host['1']))
$email_host = $email_host['1'];
else
return false;
return (gethostbyname($email_host) != $email_host &&
eregi("^[0-9a-z]([-_.~]?[0-9a-z])*@[0-9a-z]([-.]?[0-9a-z])*\\.[a-z]{2,4}$",$mail));
}
$failure = true;
$email = $naam = "";
if (isset($_POST['submit']) && ($_POST['naam'] || $_POST['email'])) {
if (!$_POST['naam']) {
echo $geen_naam_ingevuld;
$email = $_POST['email'];
} else if (!$_POST['email']) {
echo $geen_email_ingevuld;
$naam = $_POST['naam'];
} else if (!checkmail($_POST['email'])) {
echo $ongeldige_email_ingevuld;
$naam = $_POST['naam'];
$email = $_POST['email'];
} else {
$failure = false;
}
}
if ($failure) {
echo "