/*
Copyright-boodschap:
Copyright (c) 2001 by Thijs Sloesen
All rights reserved!
Contact Thijs Sloesen at: epidemi@seekitfast.com
For license-details see license.txt as shipped with this product.
Auto Maasstad Site - Mailing Post Page
*/
include "shared.php";
init();
send_header();
if (!$action)
{
// View mailing
if (!$mailing)
die ("Selecteer een mailing!");
print "
Mailing
\"Wij houden u graag op de hoogte\"
";
$news = mysql_query("select * from mailings where ID='$mailing'");
if ($news)
{
$an_article=mysql_fetch_array($news);
if ($an_article)
{
//$an_article["Mailing"] = nl2br($an_article["Mailing"]);
// Alle escaped single-quotes ("\'") wegstrippen (unescapen) omdat ze ge-escaped
// moesten worden om opgeslagen te worden in de mySQL database
$an_article["Mailing"] = str_replace("\'", "'", $an_article["Mailing"]);
echo "".$an_article["Mailing"]."";
}
else
{
echo "Sorry, er is een fout opgetreden tijdens het ophalen van de mailing.";
}
}
else
{
echo "Sorry, er is een fout opgetreden tijdens het ophalen van de mailing.";
}
}
else if ($action=="add")
{
if ($session->loggedin)
{
if (!$article)
{
?>
Klik hier om de afbeeldingen-gallerij te openen.
}
else
{
//$article = htmlspecialchars($article);
// De single-quote ("'") escapen voor mySQL
$article=str_replace('\"', '"', $article);
$query = "INSERT INTO mailings (Mailing) VALUES('$article')";
if (!(mysql_db_query($GLOBALS["database"], $query)))
echo "FATAL ERROR: Could not INSERT INTO 'mailings'!".mysql_error();
else
echo "De mailing is opgeslagen. Ga verder of klik hier om de mailing nu te versturen.";
}
}
else
{
echo "Logt u eerst in.";
}
}
send_footer();
?>