anotsodev
7/26/2016 - 1:06 AM

will initialize the connection to the database

will initialize the connection to the database

<?php
    $host = 'localhost';
    $db = 'somedbname';
    $user = 'root';
    $pass = '';

    $conn = new mysqli($host,$user,$pass,$db);
?>