| Current Path : /home/kamilrogam/komp/2017/blog/ |
| Current File : /home/kamilrogam/komp/2017/blog/panel.php |
<?php
session_start();
include ("funkcje.php");
polaczenie();
zalogowany();
wrzuc();
save();
delete();
include ("header.php");
?>
<div id="content">
<?php
if (isset ($_GET['edytuj'])){
update($_GET['edytuj']);}
else{
?>
<form method="post" action="panel.php">
<p>Tytuł</p>
<input type="text" name="tytul">
<p>Treść</p>
<textarea name="tresc"></textarea>
<p><input type="submit" name="wyslij" value="Wyślij"></p>
</form>
<?php } ?>
</div>
<?php
include ("sidebar.php");
include ("footer.php");
rozlaczenie();
?>