HI
bin neu hier und bin einfachmal so frech und stelle ne frage , ich habe auch im forum rumgeschaut aber nix gefunden das mit geholfen hat!
also hier mal ein Code(ist ein billiges newsscript)
das inser into ist nur zum gucken ob er was reinschreibt, was e ja aneinend nur beim datum tut...
Er gibt aber komischerweise immer nur das datum aus: http://firefly.cybton.com/news.php
bin neu hier und bin einfachmal so frech und stelle ne frage , ich habe auch im forum rumgeschaut aber nix gefunden das mit geholfen hat!
also hier mal ein Code(ist ein billiges newsscript)
PHP-Code:
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title>News script</title>
</head>
<body>
<?
include 'constant.php';
include 'variable.php';
@mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_PASS) OR die(mysql_error());
mysql_select_db(MYSQL_DATABASE) OR die(mysql_error());
echo "<h2>News</h2>\n";
$sql = "INSERT INTO News
(Titel, Inhalt, Datum)
VALUES
('hola',
'texts',
NOW())";
mysql_query($sql) OR die(mysql_error());
$sql = "SELECT
Titel,
Inhalt,
Datum
FROM
News
ORDER BY
Datum DESC";
$result = mysql_query($sql) OR die(mysql_error());
if(mysql_num_rows($result))
{
while($row = mysql_fetch_assoc($result))
echo $row['Datum']." ";
echo $row['Titel']." ";
echo $row['Inhalt']." ";
}
else
{
echo "<p>Keine News vorhanden</p>";
}
?>
</body>
</html>
Er gibt aber komischerweise immer nur das datum aus: http://firefly.cybton.com/news.php
Kommentar