include_config. of PHP script mis...
signup.html:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Aanmelden</title>
</head>
<body>
<form name="form1" method="post" action="signup.php">
<p>Je gewenste gebruikernaam: </p>
<p>
<input name="username" type="text" id="username">
</p>
<p>Je gewenste wachtwoord:</p>
<p>
<input name="password" type="text" id="password">
</p>
<p>
<input type="submit" name="Submit" value="Submit">
</p>
</form>
</form>
<p> </p>
</body>
</html>
signup.php:
Code (php)
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
<?php
include ("includes/config.php");
$username = $_POST["username"];
$password = $_POST["password"];
mysql_query("INSERT INTO `Users` (`id` , `username` , `password`) VALUES ('', '$ username', '$password')");
VALUES ('', '$ username', '$password');
$Query = mysql_query($Sql) or die(Niet geslaagd!);
echo DB bijgewerkt;
?>
include ("includes/config.php");
$username = $_POST["username"];
$password = $_POST["password"];
mysql_query("INSERT INTO `Users` (`id` , `username` , `password`) VALUES ('', '$ username', '$password')");
VALUES ('', '$ username', '$password');
$Query = mysql_query($Sql) or die(Niet geslaagd!);
echo DB bijgewerkt;
?>
includes/config.php (staat dus in de map includes)
Code (php)
1
2
3
4
5
2
3
4
5
<?php
$link = mysql_connect("localhost", "PHP", "Liefde")
or die("Kan niet verbinden: " . mysql_error());
mysql_close($link);
?>
$link = mysql_connect("localhost", "PHP", "Liefde")
or die("Kan niet verbinden: " . mysql_error());
mysql_close($link);
?>
alvast bedankt
een error of zo
of een andere melding
en haal die backtics ` even uit je query die horen er niet in
Gewijzigd op 01/01/1970 01:00:00 door Gerben G
mysql_query("INSERT INTO `Users` (`id` , `username` , `password`) VALUES ('', '$username', '$password')");
Let er ook even op dat je geen Quotes gebruik zoals Word die heeft, maar echte raw toetsenbord-quotes, zoals je hebt in notepad.
En als laatste: probeer eens mysql_error() in plaats van "niet geslaagd!"
Code (php)
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
<?php
include ("includes/config.php");
$username = $_POST["username"];
$password = $_POST["password"];
$Sql = "INSERT INTO Users (id, username , password) VALUES ('', '$username', '$password')";
$Query = mysql_query($Sql) or die(mysql_error());
echo "DB bijgewerkt";
?>
include ("includes/config.php");
$username = $_POST["username"];
$password = $_POST["password"];
$Sql = "INSERT INTO Users (id, username , password) VALUES ('', '$username', '$password')";
$Query = mysql_query($Sql) or die(mysql_error());
echo "DB bijgewerkt";
?>