├── examples ├── javascript │ ├── README │ ├── globals.html │ ├── ajax.html │ ├── scope.html │ └── simpleAjax.html ├── phpThings │ ├── jfb.txt │ ├── justinsspecialfile.txt │ ├── theHeader.php │ ├── includeExample.php │ ├── requireExample.php │ ├── includeMissExample.php │ ├── requireMissExample.php │ └── filewrite.php ├── greetMe.php ├── README ├── phpinfo.php ├── helloworld.php ├── helloworld2.php ├── postit.php ├── forms.html ├── userinputs │ ├── forms.html │ ├── insertValues.html │ ├── greetMe.php │ └── insertit.php ├── sessionsExample │ ├── login.php │ ├── header.php │ ├── index.php │ ├── db.php │ └── question.php ├── mysql_examples.txt ├── otherThings.php ├── htmlExamples │ ├── style.css │ ├── simpleCSS.html │ ├── htmlInputs.html │ └── simpleJS.html ├── classes.php ├── testmysql.php ├── uploads │ └── fileUpload.php ├── cars.sql └── explore_cars.php ├── DockerThings ├── my.cnf ├── start-mysqld.sh ├── start-apache2.sh ├── supervisord-mysqld.conf ├── supervisord-apache2.conf ├── import_sql.sh ├── import_sql.she ├── run.sh ├── run.she ├── apache_default ├── create_mysql_admin_user.sh ├── 000-default.conf ├── Dockerfile ├── README.md └── index.txt ├── users ├── tgree ├── cmuthyal ├── jbrunelle ├── mgunnam ├── rrachama ├── rgudipati ├── ssangam.txt └── mkukunooru ├── cs518DockerServerDeployment ├── update.js ├── logs.php ├── checkAccessibility.php ├── cs418deployment.css ├── README ├── README~ ├── cs418deployment.js ├── cs418repopuller.py ├── cs418repopuller.py~ ├── index.php ├── index.php~ └── jquery-1.11.2.min.js ├── user_credentials.txt ├── import_sql.sh ├── testmysql.php ├── README.md ├── README.md~ ├── milestone1dump.sql ├── index.html ├── cs518fall2017syllabus.txt └── cs518fall2017syllabus.html /examples/javascript/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/phpThings/jfb.txt: -------------------------------------------------------------------------------- 1 | hello justins cs518 class -------------------------------------------------------------------------------- /DockerThings/my.cnf: -------------------------------------------------------------------------------- 1 | [mysqld] 2 | bind-address=0.0.0.0 3 | -------------------------------------------------------------------------------- /users/tgree: -------------------------------------------------------------------------------- 1 | https://github.com/tgree056/CS418tgree 2 | -------------------------------------------------------------------------------- /users/cmuthyal: -------------------------------------------------------------------------------- 1 | https://github.com/cmuth001/Web-programming 2 | -------------------------------------------------------------------------------- /users/jbrunelle: -------------------------------------------------------------------------------- 1 | https://github.com/jbrunelle/ODUCS418F17 2 | -------------------------------------------------------------------------------- /users/mgunnam: -------------------------------------------------------------------------------- 1 | https://github.com/mgunn001/CS518_Project 2 | -------------------------------------------------------------------------------- /users/rrachama: -------------------------------------------------------------------------------- 1 | https://github.com/rahul-racha/CS518-Project 2 | -------------------------------------------------------------------------------- /DockerThings/start-mysqld.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec mysqld_safe 3 | -------------------------------------------------------------------------------- /examples/phpThings/justinsspecialfile.txt: -------------------------------------------------------------------------------- 1 | hello justins cs518 class -------------------------------------------------------------------------------- /users/rgudipati: -------------------------------------------------------------------------------- 1 | https://github.com/rohila95/WebProgramming-CS518 2 | -------------------------------------------------------------------------------- /examples/greetMe.php: -------------------------------------------------------------------------------- 1 | Hello, ! 2 | -------------------------------------------------------------------------------- /users/ssangam.txt: -------------------------------------------------------------------------------- 1 | https://github.com/sukeshsangam/CS-518-Web-Programming- -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- 1 | Examples from http://www.cs.odu.edu/~jbrunelle/cs518/examples/ 2 | -------------------------------------------------------------------------------- /users/mkukunooru: -------------------------------------------------------------------------------- 1 | https://github.com/maheshreddykukunooru/WebProgrammingProject_cs518 2 | -------------------------------------------------------------------------------- /examples/phpThings/theHeader.php: -------------------------------------------------------------------------------- 1 | This is a header!!"; 3 | ?> 4 | -------------------------------------------------------------------------------- /DockerThings/start-apache2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | source /etc/apache2/envvars 3 | exec apache2 -D FOREGROUND 4 | -------------------------------------------------------------------------------- /DockerThings/supervisord-mysqld.conf: -------------------------------------------------------------------------------- 1 | [program:mysqld] 2 | command=/start-mysqld.sh 3 | numprocs=1 4 | autostart=true 5 | autorestart=true 6 | -------------------------------------------------------------------------------- /cs518DockerServerDeployment/update.js: -------------------------------------------------------------------------------- 1 | //$(document).ready(function(){ 2 | // window.setTimeout(checkAccessibility,1000); 3 | // 4 | //}); 5 | -------------------------------------------------------------------------------- /DockerThings/supervisord-apache2.conf: -------------------------------------------------------------------------------- 1 | [program:apache2] 2 | command=/start-apache2.sh 3 | numprocs=1 4 | autostart=true 5 | autorestart=true 6 | -------------------------------------------------------------------------------- /examples/phpinfo.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |Hello World a different way!
11 | 12 | 13 | 14 |