Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 8th, 2012  |  syntax: PHP  |  size: 0.31 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php include_once('/utility/main.php');
  2.         $home = $app_path;
  3.         $login = $app_path . 'login';
  4.         $register = $app_path . 'register';
  5. ?>
  6.  
  7. <div id="sidebar">
  8.        
  9.         <a href="<?php echo $home; ?>">Home</a><br />
  10.         <a href="<?php echo $login; ?>">Login</a><br />
  11.         <a href="<?php echo $register; ?>">Register</a>
  12.                
  13. </div>