Web Engineering Projects Info:
Team 1 - Paula Warner
Happy-Tags-To-You - Promotional Products
Office: Ross 153
E-mail : pwarner@edinboro.edu
Phone : (814) 732-2760
Team Members:
- Aaron Valoroso
- Austin Porter
- Matt Atwood
Details:
- E-Commerce Site for her Custom Trinkets
- url: happytagstoyou.cs.edinboro.edu
- folder dir: /home/csci423we/201720/group1
- mysql db: happytagstoyou
- mysql connection user: happytagstoyou
- mysql connection password: httyconnectuserpass
- Project Page
Team 2 - Elizabeth Gillette
Nursing Billing Simulator
email: egillette@edinboro.edu
Phone:
814-449-5102
Team Members
- Josh Anderson
- Khuyag Otgonbold
- Kyle Grygo
Details:
- Mock Billing for the Nursing Dept.
- url: nursingbill.cs.edinboro.edu
- folder dir: /home/csci423we/201720/group2
- mysql db: nursingbill
- mysql connection user: nursingbill
- mysql connection password: nbconnectuserpass
- Project Page
Team 3 - Leah Therasse
Rental Website
Phone: (814) 734-7464
Address: 214 Erie Street
Email:
Team Members
- Kurt Pilker
- Jake Sorber
- Nick O'Black
- Caleb Jackman
Details:
Team 4 - Rose Graham
Reseach Colloboration for NWPA
Phone: 732-1246
Address: Reeder Hall, 302
Email: rgraham@edinboro.edu
Team Members
- Chris Karcher
- Dan Connelly
- Will Hoffman
Details:
- Colloborate on Reasearch Projects for all Universities in NW PA
- This is now a WordPress Site
- Website: http://nwparesearch.cs.edinboro.edu
- Site Admin Password: nwparconnectuserpass
- Log in here: http://nwparesearch.cs.edinboro.edu/wp-login.php
- Folder access: /var/www/vhosts/group4/wordpress (local to csci423.cs.edinboro.edu)
- Mysql info is still the same
- Old Stuff
- url: nwparesearch.cs.edinboro.edu
- folder dir: /home/csci423we/201720/group4
- mysql db: nwparesearch
- mysql connection user: nwparesearch
- mysql connection password: nwparconnectuserpass
- Project Page
Team 5 - Mary Beth Mason
Speech Pathology Billing Simulator
Phone: 814-732-1287
Address: 221 Human Services Building
Email: mmasonbaughman@edinboro.edu
Team Members
- Kelsey Jordan
- James Miller
- Ashley Kemick
Details:
- Speech Pathology - Mock Billing site.
- url: speechpathbill.cs.edinboro.edu
- folder dir: /home/csci423we/201720/group5
- mysql db: speechpathbill
- mysql connection user: speechpathbill
- mysql connection password: spbconnectuserpass
- Project Page
Some Technical Details
To connect using File zilla:

Phpmyadmin:
https://csci423.cs.edinboro.edu/phpmyadmin
Reminder of how to connect to your database:
<?php
$db_location = "localhost";
$db_username = "dtucker";
$db_password = "password";
$db_database = "TuckerShoes";
$db_Connection = mysqli_connect("$db_location", "$db_username", "$db_password", "$db_database") or die("Error Connecting to the MySQL Server");
?>