To Add the the PHPMyAdmin to your projects add following code to your project.
<?php $servername = "cit-mysql.regionals.miamioh.edu"; $username = "uniqueid"; $password = "mysqlpassword"; // Connect to MySQL $conn = new mysqli($servername, $username, $password); if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error);