Skip to content

Projects for Phila U IDD-632-1 Database Mgmt & Scripting Fall 2016

Notifications You must be signed in to change notification settings

howdiz/IDD-632-FL-2016

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 

Repository files navigation

IDD-632-FL-2016

Project files for Phila U IDD-632-1 Database Mgmt & Scripting Fall 2016

  1. Basic contact form and form handler

Relies on the following Datbase IDD-632:

CREATE TABLE `contacts` (
  `id` int(11) NOT NULL,
  `name` varchar(50) NOT NULL,
  `email` varchar(50) NOT NULL,
  `message` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;


ALTER TABLE `contacts`
  ADD PRIMARY KEY (`id`);


ALTER TABLE `contacts`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
  1. Basic beer data management app

About

Projects for Phila U IDD-632-1 Database Mgmt & Scripting Fall 2016

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published