quote_toevoegen.php
Gesponsorde koppelingen
PHP script bestanden
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?PHP
session_start();
if(!session_is_registered(gebruikersnaam)){
header("location:login.php");
}
function remSlash($varvar) {
if (get_magic_quotes_gpc()) {
$varRem = stripslashes($varvar);
}
else {
$varRem = $varvar;
}
return $varRem;
}
?>
session_start();
if(!session_is_registered(gebruikersnaam)){
header("location:login.php");
}
function remSlash($varvar) {
if (get_magic_quotes_gpc()) {
$varRem = stripslashes($varvar);
}
else {
$varRem = $varvar;
}
return $varRem;
}
?>
<html>
<head>
<title>Quote toevoegen - verwerking</title>
</head>
<body>
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
<?PHP
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");
if(!empty($_POST['quote'])){
$quote=remSlash($_POST['quote']);
$sql="INSERT INTO quotes (quote) VALUES ('$quote');";
$result=mysql_query($sql);
echo "<h3> Uw quote is toegevoegd!</h3><br />";
echo "<a href=\"login_gelukt.php\">Klik hier om terug te gaan</a>";
}
else{
echo "<h3> U moet wel wat invullen</h3><br /><a href=\"login_gelukt.php\">Probeer het opnieuw</a>";
}
?>
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");
if(!empty($_POST['quote'])){
$quote=remSlash($_POST['quote']);
$sql="INSERT INTO quotes (quote) VALUES ('$quote');";
$result=mysql_query($sql);
echo "<h3> Uw quote is toegevoegd!</h3><br />";
echo "<a href=\"login_gelukt.php\">Klik hier om terug te gaan</a>";
}
else{
echo "<h3> U moet wel wat invullen</h3><br /><a href=\"login_gelukt.php\">Probeer het opnieuw</a>";
}
?>
</body>
</html>