Foutmelding
Ik wat doe ik verkeert? ik kan de fout niet vinden?
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?
require("../include/global.php");
if($_GET['go'] == 'make')
{
$sql = "SELECT * FROM users WHERE username = '".$_POST['username']."'";
$query = mysql_query($sql)or die(mysql_error());
$aantal = mysql_num_rows($query);
if(!$_POST['username'])
{
header("Location: ../index.php?next=3");
}
elseif(!$_POST['pass1'] OR !$_POST['pass2'])
{
header("Location: ../index.php?next=4");
}
elseif(!$_POST['email1'] OR !$_POST['email2'])
{
header("Location: ../index.php?next=5");
}
elseif(!$_POST['day'] OR !$_POST['month'] OR !$_POST['year'])
{
header("Location: ../index.php?next=6");
}
elseif(!preg_match("/^[A-Z0-9._%-]+@[A-Z0-9._%-]+\.[A-Z]{2,6}$/i", $_POST['email1']))
{
header("Location: ../index.php?next=7");
}
elseif($aantal >= '1')
{
header("Location: ../index.php?next=8");
}
elseif(!$_POST['sex'])
{
header("Location: ../index.php?next=9");
}
else
{
$pass = md5($_POST['pass1']);
$activation = makekey(16);
$ip = $_SERVER['REMOTE_ADDR'];
$geboortedatum = $_POST['year'].'-'.$_POST['month'].'-'.$_POST['day'];
$insert = "INSERT INTO users
(username,wachtwoord,sex,email,registratiedate,activation,ip,newsletter,geboortedatum)
VALUES
('".$_POST['username']."','".$pass."','".$_POST['geslacht']."','".$_POST['email1']."',NOW(),'".$activation."','".$ip."','".$_POST['newsletter']."''".$geboortedatum."')";
$query = mysql_query($insert)or die(mysql_error());
if($query == TRUE)
{
$email = $_POST['email1'];
$bericht = '<body bgcolor="#f0f9ff"><div align="center">';
$bericht .= '<table border="0" width="500" cellspacing="0" cellpadding="0">';
$bericht .= '<tr><td height="112" background="http://www.walibiclub.nl/image/email/registratie/header.png" colspan="3"></td></tr>';
$bericht .= '<tr><td width="7" background="http://walibiclub.nl/image/email/registratie/left.png"></td>';
$bericht .= '<td width="486" bgcolor="#FFFFFF">';
$bericht .= 'Beste '.$_POST['username'].',<br><br>Welkom op walibiclub.nl je bent nu bijna een lid van onze website. ';
$bericht .= 'Het enige wat je nog moet doen is je account activeren doormiddel van de onderstaande activatie code. ';
$bericht .= 'Ook staat er in deze mail jou wachtwoord en gebruikersnaam, bewaar deze email op een veilige plek!<br><br>';
$bericht .= '<b>Gebruikersnaam:</b> '.$_POST['username'].'<br><b>Wachtwoord:*</b> '.$_POST['pass1'].'<br>';
$bericht .= '<b>Activatie code:</b> '.$activation.'<br>Klik <a href="http://walibiclub.nl/?p=activation&code='.$activation.'">hier</a> ';
$bericht .= 'om jou account te activeren!<br><br>Heel veel plezier op walibiclub.nl.<br><br>Vriendelijke groet,<br>Walibiclub staf.<br><br>';
$bericht .= '*Het wachtwoord is gecodeerd opgeslagen en kan niet worden opgevraagt!<br>';
$bericht .= '<small>dit is een automatische verzonden email en kan niet worden beantwoord</small>';
$bericht .= '</td><td width="7" background="http://walibiclub.nl/image/email/registratie/right.png"></td></tr>';
$bericht .= '<tr><td background="http://walibiclub.nl/image/email/registratie/bot.png" colspan="3" height="4"></td></tr>';
$bericht .= '</table>';
$bericht .= '</div></body>';
$header = "From: Walibiclub.nl <[email protected]>\r\n"; // naam + email van afzender
$header .= "Reply-To: [email protected]\r\n"; // reactie naar dit adres sturen
$header .= "MIME-Version: 1.0\r\n";
$header .= "Content-Type: text/html; charset=iso-8859-1\r\n";
$header .= "X-Priority: 3\r\n";
$header .= "X-MSMail-Priority: Normal\r\n";
$header .= "X-Mailer: PHP / ".phpversion()."\r\n";
mail($email,"Account activatie",$bericht,$header);
header("Location: ../index.php?next=10");
}
else
{
header("Location: ../index.php?next=11");
}
}
}
?>
require("../include/global.php");
if($_GET['go'] == 'make')
{
$sql = "SELECT * FROM users WHERE username = '".$_POST['username']."'";
$query = mysql_query($sql)or die(mysql_error());
$aantal = mysql_num_rows($query);
if(!$_POST['username'])
{
header("Location: ../index.php?next=3");
}
elseif(!$_POST['pass1'] OR !$_POST['pass2'])
{
header("Location: ../index.php?next=4");
}
elseif(!$_POST['email1'] OR !$_POST['email2'])
{
header("Location: ../index.php?next=5");
}
elseif(!$_POST['day'] OR !$_POST['month'] OR !$_POST['year'])
{
header("Location: ../index.php?next=6");
}
elseif(!preg_match("/^[A-Z0-9._%-]+@[A-Z0-9._%-]+\.[A-Z]{2,6}$/i", $_POST['email1']))
{
header("Location: ../index.php?next=7");
}
elseif($aantal >= '1')
{
header("Location: ../index.php?next=8");
}
elseif(!$_POST['sex'])
{
header("Location: ../index.php?next=9");
}
else
{
$pass = md5($_POST['pass1']);
$activation = makekey(16);
$ip = $_SERVER['REMOTE_ADDR'];
$geboortedatum = $_POST['year'].'-'.$_POST['month'].'-'.$_POST['day'];
$insert = "INSERT INTO users
(username,wachtwoord,sex,email,registratiedate,activation,ip,newsletter,geboortedatum)
VALUES
('".$_POST['username']."','".$pass."','".$_POST['geslacht']."','".$_POST['email1']."',NOW(),'".$activation."','".$ip."','".$_POST['newsletter']."''".$geboortedatum."')";
$query = mysql_query($insert)or die(mysql_error());
if($query == TRUE)
{
$email = $_POST['email1'];
$bericht = '<body bgcolor="#f0f9ff"><div align="center">';
$bericht .= '<table border="0" width="500" cellspacing="0" cellpadding="0">';
$bericht .= '<tr><td height="112" background="http://www.walibiclub.nl/image/email/registratie/header.png" colspan="3"></td></tr>';
$bericht .= '<tr><td width="7" background="http://walibiclub.nl/image/email/registratie/left.png"></td>';
$bericht .= '<td width="486" bgcolor="#FFFFFF">';
$bericht .= 'Beste '.$_POST['username'].',<br><br>Welkom op walibiclub.nl je bent nu bijna een lid van onze website. ';
$bericht .= 'Het enige wat je nog moet doen is je account activeren doormiddel van de onderstaande activatie code. ';
$bericht .= 'Ook staat er in deze mail jou wachtwoord en gebruikersnaam, bewaar deze email op een veilige plek!<br><br>';
$bericht .= '<b>Gebruikersnaam:</b> '.$_POST['username'].'<br><b>Wachtwoord:*</b> '.$_POST['pass1'].'<br>';
$bericht .= '<b>Activatie code:</b> '.$activation.'<br>Klik <a href="http://walibiclub.nl/?p=activation&code='.$activation.'">hier</a> ';
$bericht .= 'om jou account te activeren!<br><br>Heel veel plezier op walibiclub.nl.<br><br>Vriendelijke groet,<br>Walibiclub staf.<br><br>';
$bericht .= '*Het wachtwoord is gecodeerd opgeslagen en kan niet worden opgevraagt!<br>';
$bericht .= '<small>dit is een automatische verzonden email en kan niet worden beantwoord</small>';
$bericht .= '</td><td width="7" background="http://walibiclub.nl/image/email/registratie/right.png"></td></tr>';
$bericht .= '<tr><td background="http://walibiclub.nl/image/email/registratie/bot.png" colspan="3" height="4"></td></tr>';
$bericht .= '</table>';
$bericht .= '</div></body>';
$header = "From: Walibiclub.nl <[email protected]>\r\n"; // naam + email van afzender
$header .= "Reply-To: [email protected]\r\n"; // reactie naar dit adres sturen
$header .= "MIME-Version: 1.0\r\n";
$header .= "Content-Type: text/html; charset=iso-8859-1\r\n";
$header .= "X-Priority: 3\r\n";
$header .= "X-MSMail-Priority: Normal\r\n";
$header .= "X-Mailer: PHP / ".phpversion()."\r\n";
mail($email,"Account activatie",$bericht,$header);
header("Location: ../index.php?next=10");
}
else
{
header("Location: ../index.php?next=11");
}
}
}
?>
Column count doesn't match value count at row 1
mist comma tussen
maar leer anders even engels... het staat er gewoon...
Column count doesn't match value count at row 1
Kolom aantal is niet gelijk aan waarde aantal