will initialize the connection to the database
<?php $host = 'localhost'; $db = 'somedbname'; $user = 'root'; $pass = ''; $conn = new mysqli($host,$user,$pass,$db); ?>