survey_seahorse

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

commit 920d6273c51101b22cd192d1aded0cf2da4cf2c0
parent b521317e16d03173a2911cb4d57113973ec7b348
Author: John Kubach <johnkubach@gmail.com>
Date:   Wed, 12 Dec 2018 14:35:43 -0500

password for db is blank by default

Diffstat:
Awebsite/config.php | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/website/config.php b/website/config.php @@ -0,0 +1,11 @@ +<?php + +$dbServer = "localhost"; +$dbUsername = "root"; +$dbPassword = ""; +$dbName = "seahorse"; + +$connect = mysqli_connect($dbServer, $dbUsername, $dbPassword, $dbName); + +?> +