273
users online
News
Journals
Articles
Forums
Tutorials
Events
Polls
Albums
Videos
E-mail Address
Password
Cookie
Forgot password?
CF3 Migrate
Register
Login
Finally finished!
by
bAnga
•
24 Dec 2011, 15:41
•
Journals
I finally finished his website!
http://zaktv.onlinestereo.nl
- Do you like it small monsters?
Comments
31
▼
DeactSeareal
24 Dec 2011, 15:42
i got shit in my ass i ned to get rid off, brb toilet
▼
bAnga
24 Dec 2011, 15:43
Goodluck!
Parent
▼
jetro
24 Dec 2011, 15:43
Contact form looks pretty sketchy.
▼
bAnga
24 Dec 2011, 15:43
BangBang!.................You're dead!
Parent
▼
bAnga
24 Dec 2011, 15:45
Cool picture bro!
Parent
▼
dEzIrE
24 Dec 2011, 15:49
even i make better contact forms
▼
bAnga
24 Dec 2011, 15:51
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
▼
dEzIrE
24 Dec 2011, 16:35
i dont think you and my mom fit in one shower, shes rather big
Parent
▼
bAnga
24 Dec 2011, 16:40
Ohhh here specially for you m8!
Love You!
http://zaktv.onlinestereo.nl/contact/
Parent
▼
bAnga
24 Dec 2011, 16:44
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
▼
Loekino
24 Dec 2011, 16:01
gonna catch them all!
▼
Levin
24 Dec 2011, 16:18
looks like random wordpress thingy shit nothing special
check
http://yjzz.yj.funpic.de/
instead
merry christmas homos
▼
bAnga
24 Dec 2011, 16:50
I don't use wordpress cockface
Quote
RewriteEngine 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
▼
h3ll
24 Dec 2011, 16:50
your contact form fails tho :d
Parent
▼
bAnga
24 Dec 2011, 17:12
Fails? why? every 60 min you can send a mail form, the code is working.
Parent
▼
h3ll
24 Dec 2011, 17:59
wasnt to you :p
Parent
▼
bAnga
24 Dec 2011, 18:08
Love you:$
Parent
▼
Levin
24 Dec 2011, 17:30
:XD
Parent
▼
aKse
24 Dec 2011, 18:15
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
▼
FLExican
24 Dec 2011, 19:02
u mad?:Xd
Parent
▼
aKse
25 Dec 2011, 00:32
of course i got fucking scared shitless :C
Parent
▼
Levin
24 Dec 2011, 20:49
he mad
Parent
▼
Panda
24 Dec 2011, 16:40
Don't like it
▼
bAnga
24 Dec 2011, 16:49
I don't like you!
Parent
▼
Vanhaomena
24 Dec 2011, 16:51
I like you!
Parent
▼
Panda
24 Dec 2011, 17:02
Mikkom8 <3
Parent
▼
Krii
24 Dec 2011, 16:51
iets te veel zwart
verder zeker nice man!
▼
bAnga
24 Dec 2011, 17:14
KRI KRI, JIJ KENT ALEX NIET! BUITEN IS HIJ WIT! VAN BINNEN IS HIJ ZWART!
Parent
▼
Krii
24 Dec 2011, 17:18
Alexis P.
Parent
▼
bAnga
24 Dec 2011, 17:22
IDD! the real gangster! Hier
http://www.myquality.info
Parent
▼
unforgiven
24 Dec 2011, 18:14
looks nice.
Back to top
Recent
Events
Polls
Thompson or MP40?
Thompson
35.8 %
(19 votes)
MP40
64.2 %
(34 votes)
MS in Supply Chain Management in Germany
aryann
MS in Mechanical Engineering in Germany
aryann
ET Anniversary 6on6 ODC
Sebhes
How to Download Ringtone iPhone
FarahHelga
Fildena 100 Mg | Long Lasting ED Pill
lifesavingrx
Escorts in Delhi
sunita01
Download ET
News
+
ET Anniversary LAN Announcement
Sebhes
27
ET Anniversary Winter League
Sebhes
1
Merry Christmas Crossfire
ohurcool
5
ET Anniversary Fall Cup Play Offs
Sebhes
1
ET Anniversary Fall Cup Groups & Schedule
Sebhes
14
RTCW: Tavern Rush - Purmerend 2023
Graecos
4
Journals
+
ET on steam
overdrive
26
All good things must come to an end?
TosspoT
592
MS in Supply Chain Management in Germany
aryann
0
ET Anniversary 6on6 ODC
Sebhes
0
How to Download Ringtone iPhone
FarahHelga
0
ET Anniversary Fall Cup 3on3 Qualifiers
Sebhes
5
Script to download private messages
Kimi
5
Vote Pansy for Esports Award
TosspoT
12
Graphic designer
Sebhes
2
cheater confession journal
mama
33
4 years later...all good things must actually come to an end
TosspoT
119
The dust is starting to settle in
Sebhes
13
Threads
Public Servers
dorian1
7
Frag Movie Database
fumble
294
Fildena 100 Mg | Long Lasting ED Pill
lifesavingrx
0
Escorts in Delhi
sunita01
1
Looking for old FM
ght
11
ET in 4k despite windows scaling at 200%?
Patrick_70
1
Онлайн игры
hilomod
0
australian cheater
pengirl
9
cybergames old servers
barbiekiller
12
objtrack.lua script
dorian1
8
infected event
barbiekiller
0
new file data base for wolfenstein
barbiekiller
8
Tutorials
+
How to Play ET in 2022
ohurcool
148
New trick jump tutorial series!
donkanator
2
RTCW Study - Spreadscale
donkanator
10
Tech3 Demo API - 0.1.1
Kimi
9
Videos
Albums
3er Open
by
HaoKakao
10
ET Reborn LAN 2015
by
timbolina
1112
LAN PICS
by
Pansy
35
MS in Mechanical Engineering in Germany
by
aryann
Golden Pumpkins
by
Nizou
Tavern Rush Ghent 2022 - RTCW LAN...
by
Nizou
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!
Love You!
http://zaktv.onlinestereo.nl/contact/
check http://yjzz.yj.funpic.de/ instead
merry christmas homos
GET LIFE
verder zeker nice man!