Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.59 KB | None | 0 0
  1. <?php
  2.  
  3. $backgroundcolor = 0xEEFFEE;
  4. $headercolor = 0xBBBBFF;
  5. $footercolor = 0xBBBBFF;
  6. $navcolor = 0xBBBBFF;
  7. $counterbgcolor = $footercolor;
  8.  
  9. $server = '54.69.48.166';
  10. $user = 'vjaz';
  11. $password = 'vjazpassword';
  12. $database = 'musdb';
  13.  
  14. function createnavdiv($pagename, $text) {
  15.     if ($_SERVER["PHP_SELF"] === $pagename) {
  16.         return '<div><b>' . $text . '</b></div>';
  17.     } else {
  18.         return '<a href="' . $pagename . '"><div>' . $text . '</div></a>';
  19.     }
  20. }
  21.  
  22. function err($aba) {
  23.     echo 'Some kind of ошибка' . $aba;
  24. }
  25.  
  26. ?>
  27. <!DOCTYPE html>
  28. <html>
  29.     <head>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement