PHP interesse |
|
heb het al gefixt, heb gewoon een pagina met form gemaakt, en dan een pagina met de functie, ,het is wel een kleine code , als er geen velden ingevuld worden zou er dat ook moeten komen, dit is de code :
<?php
if(empty($_GET['pagina']))
header("location: ../../index.php?pagina=leden/adnieuws");
beveiliging(1);
$sql = "INSERT INTO vb_nieuws (id, titel, msg, datum) VALUES ('', '" . $_POST['titel'] . "', '" . $_POST['msg'] . "', '" . $_POST['datum'] . "')";
$res = mysql_query($sql)or die(mysql_error());
if ($res)
{
echo "Bericht succesvol toegevoegd.";
}
else
{
echo "Bericht niet toegevoegd.";
}
?>
<?php if(empty($_GET['pagina'])) header("location: ../../index.php?pagina=leden/adnieuws"); beveiliging(1); $sql = "INSERT INTO vb_nieuws (id, titel, msg, datum) VALUES ('', '" . $_POST['titel'] . "', '" . $_POST['msg'] . "', '" . $_POST['datum'] . "')"; if ($res) { echo "Bericht succesvol toegevoegd."; } else { echo "Bericht niet toegevoegd."; } ?>
|