Sample files for CS 148 class. Be sure to check with your professor if you have problems
This is for an initial database setup.
Generally you don't show all your tables to users so this is just so you can see it working. It is recommended that you put an .htaccess file in the table folder to restrict the code to only you and your course instructor:
<Files *> AuthType WebAuth require user yourUsername yourInstructor etc. satisfy any order allow,deny </Files>
Be sure to update bin/pass.php with your passwords. As a rule I always put the bin folder outside of the public (www-root) folder and add ../ as needed for my path structure.
Demo site: http://rerickso.w3.uvm.edu/education/cs148/assignment1.0
You request your database accounts from: https://webdb.uvm.edu/
NOTE: I use my silk account, your zoo account will also work
NOTE you will need to change this line in assignment1.0/lib/constants.php
define("DATABASE_NAME", strtoupper(get_current_user()) . '_UVM_Courses_Testing');
So that is has the correct database name that you are using.