
PK 
| ADDRLIN : /home/anibklip/vpgldh.com/GD21-22/members/ |
| Current File : /home/anibklip/vpgldh.com/GD21-22/members/author.php |
<?php
/**
* author.php
* You can gather more details by following the
* Adding Protected Pages to the Jp77 System
* tutorial found here: http://ivannovak.com/b5rj
*/
include("include/session.php");
if(!$session->isAuthor()){
header("Location: main.php");
} else {
?>
<?php include("_header.html"); ?>
<div id="main" class="container_12">
<p>you have author privileges</p>
</div>
<?php include("_footer.html"); ?>
<?php
}
?>

