?
Current File : /home/drugfree/public_html/pledge/db_conn.php
<?php

//$mysqli = new mysqli("example.com", "user", "password", "database");

	$conn = new mysqli("localhost", "drugfree_user", "Drug@free2025", "drugfree_db");
	
//	 check connection 
if (mysqli_connect_errno()) {
    printf("Connect failed: %s\n", mysqli_connect_error());
    exit();
}
	
	
?>