include werkt niet ???
register.php
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?php
include ('functie.php');
if(isset($_POST['submit'])){
register($naam,$adres,$postcode,$plaats,$mobiel,$email,$geboortedatum,$rijbewijstype,$rijbewijsnummer,$gebruiker,$wachtwoord);
}
?>
<html>
<head>
<title>registreren</title>
<link rel="stylesheet" href="final.css" />
</head>
<body>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<input type="hidden" name="actie" value="" /><br />
Naam: <input type="text" name="naam" /><br />
Adres: <input type="text" name="adres" /><br />
Postcode: <input type="text" name="postcode" /><br />
Plaats: <input type="text" name="plaats" /><br />
Mobiele telefoon: <input type="tel" name="mobiele" /><br />
Email: <input type="email" name="email" /><br />
Geboortedatum: <input type="text" name="geboortedatum" /><br />
Rijbewijs type: <input type="text" name="rijbewijstype" /><br />
Rijbewijs nummer: <input type="text" name="rijbewijsnummer" /><br />
Gebruikersnaam: <input type="text" name="gebruikersnaam" /><br />
Wachtwoord: <input type="password" name="wachtwoord" /><br />
Wachtwoord controle: <input type="password" name="wachtwoord2" /><br />
<input type="submit" value="Registreer" />
</form>
</body>
</html>
en functie.php
<?php
function dbConnect() {
$db_host = "localhost";
$db_username = "root";
$db_password = "";
$db_name = "pieterleek";
$con = mysqli_connect($db_host,$db_username,$db_password,$db_name);
if (mysqli_connect_errno()) {
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
return $con;
}
function login($username, $password){
$con = dbConnect();
$stmt = $con->prepare("SELECT id, level FROM klanten WHERE username = ? AND password = ?");
$stmt->bind_param('ss', $username, $password);
$stmt->execute();
$result = $stmt->get_result();
if ($row = $result->fetch_array(MYSQLI_ASSOC))
{
$_SESSION['user_id'] = $row['id'];
$_SESSION['user_level'] = $row['level'];
} else {
$stmt->close();
return false;
}
$stmt->close();
return true;
}
function logout () {
unset ($_SESSION['user_id']);
unset ($_SESSION['user_level']);
}
function showAllCarsFront() {
$con = dbConnect();
$stmt = $con->prepare("SELECT id, kenteken, merktype, soort, omschrijving, gps, price FROM autos WHERE active = 1");
$stmt->execute();
$y = 0;
$result = $stmt->get_result();
while ($row = $result->fetch_array(MYSQLI_ASSOC))
{
$cars[$y]['id'] = $row['id'];
$cars[$y]['kenteken'] = $row['kenteken'];
$cars[$y]['merktype'] = $row['merktype'];
$cars[$y]['soort'] = $row['soort'];
$cars[$y]['omschrijving'] = $row['omschrijving'];
$cars[$y]['gps'] = $row['gps'];
$cars[$y]['prijs'] = $row['prijs'];
$y++;
}
$stmt->close();
return $cars;
}
function showCarDetails($carID) {
$con = dbConnect();
$stmt = $con->prepare("SELECT * FROM autos WHERE id = ?");
$stmt->bind_param('i', $carID);
$stmt->execute();
$result = $stmt->get_result();
if ($row = $result->fetch_array(MYSQLI_ASSOC))
{
$cars['id'] = $row['id'];
$cars['kenteken'] = $row['kenteken'];
$cars['merktype'] = $row['merktype'];
$cars['soort'] = $row['soort'];
$cars['omschrijving'] = $row['omschrijving'];
$cars['gps'] = $row['gps'];
$cars['prijs'] = $row['prijs'];
}
$stmt->close();
return $cars;
}
function register($naam,$adres,$postcode,$plaats,$mobiel,$email,$geboortedatum,$rijbewijstype,$rijbewijsnummer,$gebruiker,$wachtwoord){
$con = dbConnect();
if(isset($_POST['submit']))
{
mysql_query("INSERT INTO klanten (naam, adres, postcode, plaats, mobiel, email, geboortedatum, rijbewijstype, rijbewijsnummer, gebruiker, wachtwoord) VALUES
('".$naam."', '".$adres."', '".$postcode."', '".$plaats."', '".$mobiel."', '".$email."','".$geboortedatum."', '".$rijbewijstype."', '".$rijbewijsnummer."', '".$gebruiker."', '".$wachtwoord."')") or die (mysql_error());
echo 'De klant is met succes aangemaakt!';
}
else
{
}
}
?>
include ('functie.php');
if(isset($_POST['submit'])){
register($naam,$adres,$postcode,$plaats,$mobiel,$email,$geboortedatum,$rijbewijstype,$rijbewijsnummer,$gebruiker,$wachtwoord);
}
?>
<html>
<head>
<title>registreren</title>
<link rel="stylesheet" href="final.css" />
</head>
<body>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<input type="hidden" name="actie" value="" /><br />
Naam: <input type="text" name="naam" /><br />
Adres: <input type="text" name="adres" /><br />
Postcode: <input type="text" name="postcode" /><br />
Plaats: <input type="text" name="plaats" /><br />
Mobiele telefoon: <input type="tel" name="mobiele" /><br />
Email: <input type="email" name="email" /><br />
Geboortedatum: <input type="text" name="geboortedatum" /><br />
Rijbewijs type: <input type="text" name="rijbewijstype" /><br />
Rijbewijs nummer: <input type="text" name="rijbewijsnummer" /><br />
Gebruikersnaam: <input type="text" name="gebruikersnaam" /><br />
Wachtwoord: <input type="password" name="wachtwoord" /><br />
Wachtwoord controle: <input type="password" name="wachtwoord2" /><br />
<input type="submit" value="Registreer" />
</form>
</body>
</html>
en functie.php
<?php
function dbConnect() {
$db_host = "localhost";
$db_username = "root";
$db_password = "";
$db_name = "pieterleek";
$con = mysqli_connect($db_host,$db_username,$db_password,$db_name);
if (mysqli_connect_errno()) {
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
return $con;
}
function login($username, $password){
$con = dbConnect();
$stmt = $con->prepare("SELECT id, level FROM klanten WHERE username = ? AND password = ?");
$stmt->bind_param('ss', $username, $password);
$stmt->execute();
$result = $stmt->get_result();
if ($row = $result->fetch_array(MYSQLI_ASSOC))
{
$_SESSION['user_id'] = $row['id'];
$_SESSION['user_level'] = $row['level'];
} else {
$stmt->close();
return false;
}
$stmt->close();
return true;
}
function logout () {
unset ($_SESSION['user_id']);
unset ($_SESSION['user_level']);
}
function showAllCarsFront() {
$con = dbConnect();
$stmt = $con->prepare("SELECT id, kenteken, merktype, soort, omschrijving, gps, price FROM autos WHERE active = 1");
$stmt->execute();
$y = 0;
$result = $stmt->get_result();
while ($row = $result->fetch_array(MYSQLI_ASSOC))
{
$cars[$y]['id'] = $row['id'];
$cars[$y]['kenteken'] = $row['kenteken'];
$cars[$y]['merktype'] = $row['merktype'];
$cars[$y]['soort'] = $row['soort'];
$cars[$y]['omschrijving'] = $row['omschrijving'];
$cars[$y]['gps'] = $row['gps'];
$cars[$y]['prijs'] = $row['prijs'];
$y++;
}
$stmt->close();
return $cars;
}
function showCarDetails($carID) {
$con = dbConnect();
$stmt = $con->prepare("SELECT * FROM autos WHERE id = ?");
$stmt->bind_param('i', $carID);
$stmt->execute();
$result = $stmt->get_result();
if ($row = $result->fetch_array(MYSQLI_ASSOC))
{
$cars['id'] = $row['id'];
$cars['kenteken'] = $row['kenteken'];
$cars['merktype'] = $row['merktype'];
$cars['soort'] = $row['soort'];
$cars['omschrijving'] = $row['omschrijving'];
$cars['gps'] = $row['gps'];
$cars['prijs'] = $row['prijs'];
}
$stmt->close();
return $cars;
}
function register($naam,$adres,$postcode,$plaats,$mobiel,$email,$geboortedatum,$rijbewijstype,$rijbewijsnummer,$gebruiker,$wachtwoord){
$con = dbConnect();
if(isset($_POST['submit']))
{
mysql_query("INSERT INTO klanten (naam, adres, postcode, plaats, mobiel, email, geboortedatum, rijbewijstype, rijbewijsnummer, gebruiker, wachtwoord) VALUES
('".$naam."', '".$adres."', '".$postcode."', '".$plaats."', '".$mobiel."', '".$email."','".$geboortedatum."', '".$rijbewijstype."', '".$rijbewijsnummer."', '".$gebruiker."', '".$wachtwoord."')") or die (mysql_error());
echo 'De klant is met succes aangemaakt!';
}
else
{
}
}
?>
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
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
<?php
$sql = "SELECT * FROM autos";
$records = mysql_query($sql);
?>
<html>
<head>
<title>Beschikbare auto's</title>
<link rel="stylesheet" href="final.css" />
</head>
<body>
<table width="600" border="1" cellpadding="1" cellspacing="1">
<tr>
<th>kenteken </th>
<th>merk type </th>
<th>soort </th>
<th>omschrijving </th>
<th>gps </th>
<th>prijs </th>
</tr>
<?php
while($autos=mysql_fetch_assoc($records)){
echo "<tr>";
echo "<td>".$autos['kenteken']."</td>";
echo "<td>".$autos['merktype']."</td>";
echo "<td>".$autos['soort']."</td>";
echo "<td>".$autos['omschrijving']."</td>";
echo "<td>".$autos['gps']."</td>";
echo "<td>".$autos['prijs']."</td>";
echo "</tr>";
}
?>
</table>
</body>
</html>
$sql = "SELECT * FROM autos";
$records = mysql_query($sql);
?>
<html>
<head>
<title>Beschikbare auto's</title>
<link rel="stylesheet" href="final.css" />
</head>
<body>
<table width="600" border="1" cellpadding="1" cellspacing="1">
<tr>
<th>kenteken </th>
<th>merk type </th>
<th>soort </th>
<th>omschrijving </th>
<th>gps </th>
<th>prijs </th>
</tr>
<?php
while($autos=mysql_fetch_assoc($records)){
echo "<tr>";
echo "<td>".$autos['kenteken']."</td>";
echo "<td>".$autos['merktype']."</td>";
echo "<td>".$autos['soort']."</td>";
echo "<td>".$autos['omschrijving']."</td>";
echo "<td>".$autos['gps']."</td>";
echo "<td>".$autos['prijs']."</td>";
echo "</tr>";
}
?>
</table>
</body>
</html>
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
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
<?php
function showCarDetails($carID) {
$con = dbConnect();
$stmt = $con->prepare("SELECT * FROM pieterleek WHERE id = ?");
$stmt->bind_param('i', $carID);
$stmt->execute();
$result = $stmt->get_result();
if ($row = $result->fetch_array(MYSQLI_ASSOC))
{
$cars['id'] = $row['id'];
$cars['kenteken'] = $row['kenteken'];
$cars['merktype'] = $row['merktype'];
$cars['soort'] = $row['soort'];
$cars['omschrijving'] = $row['omschrijving'];
$cars['gps'] = $row['gps'];
$cars['prijs'] = $row['prijs'];
}
$stmt->close();
return $cars;
}
?>
function showCarDetails($carID) {
$con = dbConnect();
$stmt = $con->prepare("SELECT * FROM pieterleek WHERE id = ?");
$stmt->bind_param('i', $carID);
$stmt->execute();
$result = $stmt->get_result();
if ($row = $result->fetch_array(MYSQLI_ASSOC))
{
$cars['id'] = $row['id'];
$cars['kenteken'] = $row['kenteken'];
$cars['merktype'] = $row['merktype'];
$cars['soort'] = $row['soort'];
$cars['omschrijving'] = $row['omschrijving'];
$cars['gps'] = $row['gps'];
$cars['prijs'] = $row['prijs'];
}
$stmt->close();
return $cars;
}
?>
alles staat een beetje door elkaar enige waar het bij funciei.php omgaat is register functie.
heeft iemand misschien een enig idee ?
Gewijzigd op 20/11/2014 14:02:47 door - Ariën -
Keesje Sanane op 20/11/2014 12:58:15:
... enige waar het bij funciei.php omgaat is register functie ...
Pas dan eerst je post eens aan en laat alleen de relevante code staan.
Gewijzigd op 20/11/2014 14:08:26 door - Ariën -
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
function register($naam,$adres,$postcode,$plaats,$mobiel,$email,$geboortedatum,$rijbewijstype,$rijbewijsnummer,$gebruiker,$wachtwoord){
$con = dbConnect();
if(isset($_POST['submit']))
{
mysql_query("INSERT INTO klanten (naam, adres, postcode, plaats, mobiel, email, geboortedatum, rijbewijstype, rijbewijsnummer, gebruiker, wachtwoord) VALUES
('".$naam."', '".$adres."', '".$postcode."', '".$plaats."', '".$mobiel."', '".$email."','".$geboortedatum."', '".$rijbewijstype."', '".$rijbewijsnummer."', '".$gebruiker."', '".$wachtwoord."')") or die (mysql_error());
echo 'De klant is met succes aangemaakt!';
}
else
{
}
}
?>
$con = dbConnect();
if(isset($_POST['submit']))
{
mysql_query("INSERT INTO klanten (naam, adres, postcode, plaats, mobiel, email, geboortedatum, rijbewijstype, rijbewijsnummer, gebruiker, wachtwoord) VALUES
('".$naam."', '".$adres."', '".$postcode."', '".$plaats."', '".$mobiel."', '".$email."','".$geboortedatum."', '".$rijbewijstype."', '".$rijbewijsnummer."', '".$gebruiker."', '".$wachtwoord."')") or die (mysql_error());
echo 'De klant is met succes aangemaakt!';
}
else
{
}
}
?>
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
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
<?php
include ('functie.php');
if(isset($_POST['submit'])){
register($naam,$adres,$postcode,$plaats,$mobiel,$email,$geboortedatum,$rijbewijstype,$rijbewijsnummer,$gebruiker,$wachtwoord);
}
?>
<html>
<head>
<title>registreren</title>
<link rel="stylesheet" href="final.css" />
</head>
<body>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<input type="hidden" name="actie" value="" /><br />
Naam: <input type="text" name="naam" /><br />
Adres: <input type="text" name="adres" /><br />
Postcode: <input type="text" name="postcode" /><br />
Plaats: <input type="text" name="plaats" /><br />
Mobiele telefoon: <input type="tel" name="mobiele" /><br />
Email: <input type="email" name="email" /><br />
Geboortedatum: <input type="text" name="geboortedatum" /><br />
Rijbewijs type: <input type="text" name="rijbewijstype" /><br />
Rijbewijs nummer: <input type="text" name="rijbewijsnummer" /><br />
Gebruikersnaam: <input type="text" name="gebruikersnaam" /><br />
Wachtwoord: <input type="password" name="wachtwoord" /><br />
Wachtwoord controle: <input type="password" name="wachtwoord2" /><br />
<input type="submit" value="Registreer" />
</form>
</body>
</html>
include ('functie.php');
if(isset($_POST['submit'])){
register($naam,$adres,$postcode,$plaats,$mobiel,$email,$geboortedatum,$rijbewijstype,$rijbewijsnummer,$gebruiker,$wachtwoord);
}
?>
<html>
<head>
<title>registreren</title>
<link rel="stylesheet" href="final.css" />
</head>
<body>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<input type="hidden" name="actie" value="" /><br />
Naam: <input type="text" name="naam" /><br />
Adres: <input type="text" name="adres" /><br />
Postcode: <input type="text" name="postcode" /><br />
Plaats: <input type="text" name="plaats" /><br />
Mobiele telefoon: <input type="tel" name="mobiele" /><br />
Email: <input type="email" name="email" /><br />
Geboortedatum: <input type="text" name="geboortedatum" /><br />
Rijbewijs type: <input type="text" name="rijbewijstype" /><br />
Rijbewijs nummer: <input type="text" name="rijbewijsnummer" /><br />
Gebruikersnaam: <input type="text" name="gebruikersnaam" /><br />
Wachtwoord: <input type="password" name="wachtwoord" /><br />
Wachtwoord controle: <input type="password" name="wachtwoord2" /><br />
<input type="submit" value="Registreer" />
</form>
</body>
</html>
En heb je al je query gecontroleerd, en daar foutafhandeling op toegepast?
ik heb alles gecheckt als ik include weghaal werkt het wel alleen zonder functies met include crasht het en krijg ik een lege pagina heb gecontroleerd maar tevergeefs heb gekeken naar de spelling of dat fout is maar er gebeurt gwn nix
Misschien is het zelfs verstandiger om mysqli te gebruiken als functie-bibiliotheek.
ik weet niet waarom en hoe maar hij pakt alles wat ik in functie.php heb staan terwijl ik maar 1 ding van wil gebruiken
is het mogelijk om van functie.php maar 1 functie te pakken want heb al mijn functies daar in ??? of moet ik alles apart ?
Waarom zou je een aparte functie aan willen maken voor een registratie-proces? En hoe bedoel je dat hij alle functies pakt? Je roept er toch eentje aan bij het registreren?
error_reporting(E_ALL);
ini_set("display_errors", true);
mysql_*()
MySQLi - procedureel
PDO
Dit gaat zo niet echt werken. Lees de Beginnerstut eens op www.phptuts.nl.