Advertisement
Guest User

add.php

a guest
Dec 20th, 2011
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.08 KB | None | 0 0
  1.   <?php
  2. include '../include/config.php';
  3. include '../include/functions.php';
  4.  
  5.       welcome_msg();
  6.        
  7.  
  8.   ?>
  9.  
  10. <html lang="en">
  11.  
  12.   <head>
  13.     <title>Admin</title>
  14.     <meta http-equiv="Content-Type" content="text/html"; charset=utf-8" />
  15.     <link rel="stylesheet" type="text/css" href="../style/quote_style.css" />
  16.   </head>
  17.  
  18.   <body>
  19.     <a href=logout.php>Logout</a><p>
  20.     <a href=../index.php>View posts</a>
  21.    
  22.     <div class="functions">
  23.  
  24.       <div class="addp"><a href='add.php?action=newpost'>New post</a></div>
  25.       <div class="updatep"><a href='add.php?action=updatepost&show=1'>Update post</a></div>
  26.       <div class="deletep"><a href='add.php?action=deletepost'>Delete post</a></div>
  27.       <div class="addu"><a href='add.php?action=adduser'>Add user</a></div>
  28.       <div class="updateu"><a href='add.php?action=updateuser'>Update user</a></div>
  29.       <div class="deleteu"><a href='add.php?action=deleteuser'>Delete user</a></div>
  30.       <br>
  31.     </div>
  32.  
  33.     <div class="action">
  34.       <?php user_functions(); ?>
  35.     </div>
  36.   </body>
  37.  
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement