ODUCS418F16
Fall 2017 ODU CS 418/518
This GitHub repository will be the basis for submitting assignments for the Fall 2017 CS418/518 course - Web Programming at Old Dominion University
Instructor: Dr. Justin F. Brunelle mail
Student Project Repositories
Below are links to students' project repositories for the class based on their submission in assignment 1.
Some useful demo day information
To be run for each student:
$ docker run -it -p 80:80 -e MYSQL_PASS="M0n@rch$" -v `pwd`:/app jbrunelle/lamptest
In the instance that the database creation SQL is not provided
CREATE DATABASE IF NOT EXISTS `TheDatabase` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
USE `TheDatabase`;
Enable PHP error reporting
ini_set('display_errors',1);
ini_set('display_startup_errors',1);
error_reporting(-1);