Beispiel #1
0
<?php

//if(!isset($_SERVER['HTTP_REFERER'])){
//    header("location: ../../access_denied.php?data=You don't have direct access to this page");
//}
require_once 'db/dept_detail_class.php';
?>

<script src="textEditor/ckeditor.js"></script>

<form action="server/gen-detail/dept_detail_update.php" id="editdetail" method="post">

    <textarea cols="80" id="editor1" name="editor1" rows="10" style="width:50px;">
		<?php 
$de = dept_detail::getdetail();
echo $de->detail;
?>
		</textarea>
		<script>
			CKEDITOR.replace( 'editor1' );
		</script><br />
                <button type="submit">Submit</button>
                <button type="reset">Reset</button>
</form>
Beispiel #2
0
<?php

if (!isset($_SERVER['HTTP_REFERER'])) {
    header("location: ../../access_denied.php?data=You don't have direct access to this page");
}
require_once '../../db/dept_detail_class.php';
require_once '../../db/site_log_class.php';
require_once '../../db/user_class.php';
session_start();
$de = new dept_detail($_POST['editor1']);
echo $de->handlerequest();
$l = new site_log(NULL, NULL, $_SESSION['user']->username, $_SERVER['REMOTE_ADDR'], "department details updated");
$l->insertlog();