survey_seahorse

Software Engineering Project - Fall 2018
Log | Files | Refs | README

config.php (173B)


      1 <?php
      2 
      3 $dbServer = "localhost";
      4 $dbUsername = "root";
      5 $dbPassword = "";
      6 $dbName = "seahorse";
      7 
      8 $connect = mysqli_connect($dbServer, $dbUsername, $dbPassword, $dbName);
      9 
     10 ?>
     11