Advertisement
Guest User

Untitled

a guest
Oct 15th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <?php
  2. ob_start();
  3. require 'inc/config.php';
  4. header('Content-Type: text/html; charset=utf-8');
  5. $mysql = mysql_connect($config['db']['host'], $config['db']['user'], $config['db']['pass']) or die('Nie można uzyskać połączenia z bazą danych (<b>' . mysql_error() . '</b>)');
  6. $database = mysql_select_db($config['db']['name']) or die('Nie można wybrać bazy!');
  7. mysql_query("SET NAMES utf8");
  8. mysql_query("SET CHARACTER SET utf8");
  9. mysql_query("SET collation_connection = utf8_polish_ci");
  10.  
  11. $link = $config['page']['url'];
  12.  
  13. $page = $config['page']['slogan'];
  14.  
  15. $title = $config['page']['title'].' -|- '.strtoupper($page);
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement