Finally finished!

I finally finished his website!

http://zaktv.onlinestereo.nl - Do you like it small monsters?
Comments
31
i got shit in my ass i ned to get rid off, brb toilet
Contact form looks pretty sketchy.

image: f2d18578_Gladiator
BangBang!.................You're dead!
Parent
Cool picture bro!
Parent
even i make better contact forms
Okie!

So everything is nice only not the contact form?

So uhm gonna take a shower with your mom and when i'm done i will remake the style of that one.

See you soon my brother from another mother!
Parent
i dont think you and my mom fit in one shower, shes rather big
Parent
Ohhh here specially for you m8!
Love You!

http://zaktv.onlinestereo.nl/contact/
Parent
Here for you!

Quote <?php include("header.php"); ?>
<?php include("nav.php"); ?>
<?php include("sidebar1.php"); ?>
<?php include("sidebar2.php"); ?>
<div id="content">
<div id="box1">
<h2>
Contact
</h2>

<p>
<html>
<?php
ini_set('display_errors', 0);
error_reporting(E_ALL);


session_start();

// Config Gedeelte
$cfg['url'] = "http://www.onlinestereo.org/zaktv/";// Site waarnaar je terug gaat als je een bericht hebt achtergelaten
$cfg['naam'] = "Alex"; // Webmaster naam
$cfg['email'] = "[email protected]"; // Webmaster E-mail
$cfg['spam'] = 60; // Anti Spam Tijd in Minuten ( Voer "0" om de Spam Beveiliging uit te zetten )
$cfg['text'] = TRUE; // Bij Fout Text Rood maken ( TRUE voor aan, FALSE voor uit )
$cfg['input'] = TRUE; // Bij Fout Border om Vakje Rood maken ( TRUE voor aan, FALSE voor uit )
$cfg['HTML'] = TRUE; // Een HTML email ( TRUE voor aan, FALSE voor uit )
$cfg['CAPTCHA'] = TRUE; // CAPTCHA ( TRUE voor aan, FALSE voor uit )


// Hieronder niks meer veranderen
// E-mail Checker / Validator
function checkmail($email)
{
if(eregi("^[0-9a-z]([-_.]?[0-9a-z])*@[0-9a-z]([-.]?[0-9a-z])*\\.[a-z]{2,4}$", $email))
{
return TRUE;
}
return FALSE;
}

$formulier = TRUE;

if(!isset($_COOKIE['formulier']))
{
if(isset($_POST['wis']) && ($_SERVER['REQUEST_METHOD'] == "POST"))
{
foreach($_POST as $key => $value)
{
unset($value);
}
header("Location: ".$_SERVER['PHP_SELF']."");
}

if(isset($_POST['verzenden']) && ($_SERVER['REQUEST_METHOD'] == "POST"))
{
$aFout = array();

$naam = trim($_POST['naam']);
$email = trim($_POST['email']);
$onderwerp = trim($_POST['onderwerp']);
$bericht = trim($_POST['bericht']);

if($cfg['CAPTCHA'])
{
$code = $_POST['code'];
}

if(empty($naam) || (strlen($naam) < 3) || eregi("[<>]", $naam) )
{
$aFout[] = "No name entered.";
unset($naam);
$fout['text']['naam'] = TRUE;
$fout['input']['naam'] = TRUE;
}
if(empty($email))
{
$aFout[] = "There is no email address entered.";
unset($email);
$fout['text']['email'] = TRUE;
$fout['input']['email'] = TRUE;
}
elseif(checkmail($email) == 0)
// Wanneer je PHP 5.2 > gebruikt
//elseif(!filter_var($email, FILTER_VALIDATE_EMAIL))
{
$aFout[] = "There is not a valid email address entered.";
unset($email);
$fout['text']['email'] = TRUE;
$fout['input']['email'] = TRUE;
}
if(empty($onderwerp))
{
$aFout[] = "There is no subject entered.";
unset($onderwerp);
$fout['text']['onderwerp'] = TRUE;
$fout['input']['onderwerp'] = TRUE;
}
if(empty($bericht))
{
$aFout[] = "No message is completed.";
unset($bericht);
$fout['text']['bericht'] = TRUE;
$fout['input']['bericht'] = TRUE;
}
if($cfg['CAPTCHA'])
{
if(strtoupper($code) != $_SESSION['captcha_code'])
{
$aFout[] = "There is no correct code entered.";
$fout['text']['code'] = TRUE;
$fout['input']['code'] = TRUE;
}
}
if(!$cfg['text'])
{
unset($fout['text']);
}
if(!$cfg['input'])
{
unset($fout['input']);
}
if(!empty( $aFout ))
{
$errors = '
<div id="errors">
<ul>';
foreach($aFout as $sFout)
{
$errors .= " <li>".$sFout."</li>\n";
}
$errors .= "</ul>
</div>";
}
else
{
$formulier = FALSE;


if($cfg['HTML'])
{
// Headers
$headers = "From: \"Contact Formulier\" <".$cfg['email'].">\r\n";
$headers .= "Reply-To: \"".$naam."\" <".$email.">\n";
$headers .= "Return-Path: Mail-Error <".$cfg['email'].">\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Content-Transfer-Encoding: 8bit\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\n";


$bericht = '
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
</head>

<body>
<br />
<b>Naam:</b> '.$naam.'<br />
<b>Email:</b> <a href="mailto:'.$email.'">'.$email.'</a><br />
<br />
<b>Bericht:</b><br />
'.$bericht.'
<br />
<br />
<br />
--------------------------------------------------------------------------<br />
<b>Datum:</b> '.date("d-m-Y @ H:i:s").'<br />
<b>IP:</b> <a href=\"http://sunny.nic.com/cgi-bin/whois?domain='.$_SERVER['REMOTE_ADDR'].'\">'.$_SERVER['REMOTE_ADDR'].'</a><br />
<b>Host:</b> '.gethostbyaddr($_SERVER['REMOTE_ADDR']).'<br />
</body>
</html>';
}
else
{
$bericht_wrap = wordwrap ($bericht, 40, "\n", 1);
// Headers
$headers = "From: \"Contact Formulier\" <".$cfg['email'].">\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Content-type: text/plain; charset='iso-8859-1'\n";

// Bericht
$message = "Naam: ".$naam." \n";
$message .= "E-mail: ".$email." \n";
$message .= "Bericht:\n".$bericht_wrap." \n ";
$message .= " \n ";
$message .= "Datum: ".date("d-m-Y H:i:s")." \n";
$message .= "------------------------------------------------------- \n ";
$message .= "IP: ".$_SERVER['REMOTE_ADDR']." \n ";
$message .= "Host: ".gethostbyaddr($_SERVER['REMOTE_ADDR'])." \n ";

}

if(mail($cfg['email'], "[Contact] ".$onderwerp, $bericht, $headers))
{
if(isset($_POST['stuurkopie']))
{
$headers = "From: \"Contact Formulier\" <".$email.">\r\n";
$headers .= "Reply-To: \"".$naam."\" <".$email.">\n";
$headers .= "Return-Path: Mail-Error <".$email.">\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Content-Transfer-Encoding: 8bit\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\n";

mail($email, "[Contact] ".$onderwerp, $bericht, $headers);

}

unset($naam, $email, $onderwerp, $bericht);
setcookie("formulier", 1, time() + ( $cfg['spam'] * 60 ) );

echo "
<p>
Your message has been sent, we will respond as quickly as possible. <br />
<br />
Sincerely,<br />
<b>".$cfg['naam']."</b>
</p>
";
}
else
{
echo "An error occurred while sending a email";
}
header("refresh:3;url=".$cfg['url']."");
}
}
if($formulier)
{
?>
<head>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<div id="container">
<?php
if(isset($errors)) {
echo $errors;
}
?>
<form method="post" action="<?php $_SERVER['PHP_SELF']; ?>">
<p>
<table>
<tr>
<td>
<label <?php if(isset($fout['text']['naam'])) { echo 'class="fout"'; } ?>>Name:</label>
</td>
<td>
<input type="text" id="naam" name="naam" maxlength="30" <?php if(isset($fout['input']['naam'])) { echo 'class="fout"'; } ?> value="<?php if (!empty($naam)) { echo stripslashes($naam); } ?>" /><br />
</td>
</tr>
<tr>
<td>
<label <?php if(isset($fout['text']['email'])) { echo 'class="fout"'; } ?>>Email:</label>
</td>
<td>
<input type="text" id="email" name="email" maxlength="255" <?php if(isset($fout['input']['email'])) { echo 'class="fout"'; } ?> value="<?php if (!empty($email)) { echo stripslashes($email); } ?>" /><br />
</td>
</tr>
<tr>
<td>
<label <?php if(isset($fout['text']['onderwerp'])) { echo 'class="fout"'; } ?>>Subject:</label>
</td>
<td>
<input type="text" id="onderwerp" name="onderwerp" maxlength="40" <?php if(isset($fout['input']['onderwerp'])) { echo 'class="fout'; } ?> value="<?php if (!empty($onderwerp)) { echo stripslashes($onderwerp); } ?>" /><br />
</td>
</tr>
<tr>
<td>
<label <?php if(isset($fout['text']['bericht'])) { echo 'class="fout"'; } ?>>Message:</label>
</td>
<td>
<textarea id="bericht" name="bericht" <?php if(isset($fout['input']['bericht'])) { echo 'class="fout"'; } ?> cols="35" rows="6"><?php if (!empty($bericht)) { echo stripslashes($bericht); } ?></textarea><br />
</td>
</tr>
<tr>
<td>

</td>
<td>
<?php
if($cfg['CAPTCHA'])
{
?>
<label></label>
<img src="/captcha.php" alt="" /><br />
</td>
</tr>
<tr>
<td>
<label <?php if(isset($fout['text']['code'])) { echo 'class="fout"'; } ?>>Code:</label>
</td>
<td>
<input type="text" id="code" name="code" maxlength="4" size="4" <?php if(isset($fout['input']['code'])) { echo 'class="captcha fout"'; } ?> /><br />
<?php
}
?>
</td>
</tr>
<tr>
<td>
<label for="stuurkopie">Send me a copy</label>
</td>
<td>
<input type="checkbox" id="stuurkopie" name="stuurkopie" value="1" /><br />
</td>
</tr>
<tr>
<td>
</td>
<td>
<label></label>
<input type="submit" id="verzenden" name="verzenden" value="Send" />
<input type="submit" id="wis" name="wis" value="Clear fields" />
</td>
</tr>
</table>
</p>
</form>
</div>

</body>
</html>
<?php
}
}
else
{
echo "
<p>
You can send every ".$cfg['spam']." minutes an e-mail!<br />
You will be automatically forwarded.
</p>";
header("refresh:3;url=".$cfg['url']."");
}
?>
<?php include("footer.php"); ?>
Parent
gonna catch them all!
looks like random wordpress thingy shit nothing special

check http://yjzz.yj.funpic.de/ instead

merry christmas homos
I don't use wordpress cockface

QuoteRewriteEngine On
RewriteRule ^home/(.*)/ index.php
RewriteRule ^home/(.*) index.php
RewriteRule ^broadcast/(.*)/ broadcast.php
RewriteRule ^broadcast/(.*) broadcast.php
RewriteRule ^contact/(.*)/ contact.php
RewriteRule ^contact/(.*) contact.php
Parent
your contact form fails tho :d
Parent
Fails? why? every 60 min you can send a mail form, the code is working.
Parent
wasnt to you :p
Parent
fuck you ugly motherfucker i raped your dad and whole familiy that shit rohrschach test scared the fuck out of me with headset FUCK YOU

GET LIFE
Parent
of course i got fucking scared shitless :C
Parent
Don't like it
I don't like you!
Parent
iets te veel zwart
verder zeker nice man!
KRI KRI, JIJ KENT ALEX NIET! BUITEN IS HIJ WIT! VAN BINNEN IS HIJ ZWART!
Parent
IDD! the real gangster! Hier http://www.myquality.info
Parent
looks nice.
Back to top