Yes, here is the other stuff
$hostname = "localhost";
$username = " _ ";
$password = " ";
$database = "scaspco_reviews";
$connection = mysql_connect($hostname , $username , $password)
or die("cannot make connection");
$db = mysql_select_db($database , $connection)
or die("cannot find database");
$query = "SELECT DATE_FORMAT(R_Date, '%c/%e/%Y'), ASP_Name, Username FROM REVIEW";