connect.inc.php

<? $dbconfig['host'] = ''; $dbconfig['user'] = ''; $dbconfig['base'] = ''; $dbconfig['pass'] = ''; $dbconfig['char'] = 'utf8'; try { $pdo = new PDO('mysql:host='.$dbconfig['host'].';dbname='.$dbconfig['base'].';charset='.$dbconfig['char'].';', $dbconfig['user'], $dbconfig['pass']); } catch(PDOException $e) { exit('Unable to connect Database.'); } $pdo = new PDO('mysql:host='.$dbconfig['host'].';dbname='.$dbconfig['base'].';charset='.$dbconfig['char'].';', $dbconfig['user'], $dbconfig['pass']); ?>

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.