<?php
function renderForm($first, $last, $error)
{
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>New Record</title>
</head>
<script language="javascript" type="text/javascript" src="js/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
tinyMCE.init({
// General options
mode : "textareas",
theme : "advanced",
plugins : "pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,inlinepopups,autosave",
// Theme options
theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true,
// Example word content CSS (should be your site CSS) this one removes paragraph margins
content_css : "js/tiny_mce/css/word.css",
// Drop lists for link/image/media/template dialogs
template_external_list_url : "js/tiny_mce/lists/template_list.js",
external_link_list_url : "js/tiny_mce/lists/link_list.js",
external_image_list_url : "js/tiny_mce/lists/image_list.js",
media_external_list_url : "js/tiny_mce/lists/media_list.js",
// Replace values for the template plugin
template_replace_values : {
username : "Some User",
staffid : "991234"
}
});
</script>
<!-- /TinyMCE -->
<body>
<?php
// if there are any errors, display them
if ($error != '')
{
echo '<div style="padding:4px; border:1px solid red; color:red;">'.$error.'</div>';
}
?>
<form action="" method="post">
<div>
<strong>Title News:</strong>
<input type="text" name="newstitle" value="<?php echo $newstitle; ?>" /><br/>
<br/>
<strong>Summary News</strong><br/>
<textarea name="newssummary" style='resize:none; width:450px; height:100px; border:#b7d9de 1px solid; color:#666; margin-top:5px;' value="" /><?php echo $newssummary; ?></textarea><br/>
<br/>
<strong>Body News</strong><br/>
<textarea name="newsbody" style='resize:none; width:450px; height:300px; border:#b7d9de 1px solid; color:#666; margin-top:5px;' value="" /><?php echo $newsbody; ?></textarea><br/>
<br/>
<input type="submit" name="submit" value="Submit">
</div>
</form>
</body>
</html>
<?php
}
include('connect-news.php');
if (isset($_POST['submit']))
{
$newstitle = mysql_real_escape_string(htmlspecialchars($_POST['newstitle']));
$newssummary = mysql_real_escape_string(htmlspecialchars($_POST['newssummary']));
$newsbody = mysql_real_escape_string(htmlspecialchars($_POST['newsbody']));
if ($newstitle == '' || $newssummary == '')
{
$error = 'ERROR: Please fill in all required fields!';
renderForm($newstitle, $newsbrief, $error);
}
else
{
mysql_query("INSERT news SET newstitle='$newstitle', newssummary='$newssummary', newsbody='$newsbody'")
or die(mysql_error());
header("Location: index.php");
}
}
else
{
renderForm('','','');
}
?>