hi, ich hab mir ein kelines nesboard gebastelt, und will mit hilfe einer funktion die einträge machen..aber es funkt nicht so wirklich^^
hier die inc.functions.php:
hier die news_new.php
danke schon im voraus!
mfg max
hier die inc.functions.php:
PHP-Code:
function news_input($author, $date, $time, $subject, $content)
{
//session_start();
include ("inc.dbconnect.php");
$db_connect_news_input = open_db();
$sql_news_input = "INSERT INTO guardians_news ('author', 'date', 'time', 'subject', 'content')
VALUES ('$author', '$date', '$time', '$subject', '$content')";
$result_news_input = mysql_query($db_connect_news_input);
$result_news_input = mysql_query($sql_news_input) or die ("News konnten nicht eingetragen werden. Bitte versuchen Sie es erneut.");
}
PHP-Code:
<?php
session_start();
if (!$_SESSION["user"] and !$_SESSION["status"])
{
die ("Bitte einloggen.");
}
if ($_SESSION["status"] != "a")
{
die ("Sie haben nicht die Rechte, um die Seite zu betreten.");
}
include ("includes/inc.functions.php");
$timestamp = time();
$date = date ("d.m.Y",$timestamp);
$time = date ("H:i", $timestamp);
$author = $_SESSION["user"];
$subject = $_REQUEST["subject"];
$content = $_REQUEST["content"];
$insert = news_input($author, $date, $time, $subject, $content);
if ($insert)
{
echo "News erfolgreich eingetragen.";
}
?>
mfg max
Kommentar