Advertisement
Guest User

index.php

a guest
Jul 11th, 2014
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. <?php
  2. header('content-type: text/html; charset=utf8');
  3.  
  4. mysql_connect('localhost', '########', '########')
  5.     or die('Konnte nicht zur MySQL-Datenbank verbinden.');
  6.    
  7. mysql_select_db('########')
  8.     or die('MySQL-Datenbank konnte nicht selektiert werden.');
  9.  
  10. include './include/counter.php';
  11.  
  12. if (!isset($_GET['site']) || empty('site') || !is_file('./include/sites/'.$_GET['site'].'.inc.php')) {
  13.     include './include/sites/index.inc.php';
  14. }
  15. else {
  16.     include './include/sites/'.$_GET['site'].'.inc.php';
  17. }
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement