1 Eintrag, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?
if (!($timestamp_pic)) $timestamp_pic = time(); // Bei Preview-Aufruf nicht aktualisieren
if ($prob) echo "<p>$prob</p>"; // Fehlermeldung ausgeben ...
elseif ($status == 'Preview') {
?>
<p><small><?=$date?></small><br /> <!-- ... oder Vorschau anzeigen ... -->
<big><?=format($headline)?></big></p>
<p><?= format($article)?></p>
<p><small>Category: <?= format($category)?></small></p>
<p><img src='images/<? echo "$timestamp_pic"?>.jpg'></img>
<?
} elseif ($status == 'Send') { // ... oder eintragen
$query = 'INSERT INTO media_content SET
date = now(),
headline = "'.addslashes($headline).'",
article = "'.addslashes($article).'",
category = "'.addslashes($category).'",
author = "'.addslashes($author).'",
timestamp_pic = "'.addslashes($timestamp_pic).'";
';
$sql = mysql_query($query) or die(mysql_error());
unset($status, $headline, $article, $category); // Variablen zum Artikel leeren
}
?>
1 Eintrag, 1 Seite |