80 likes | 163 Views
Welcome to the Web!. Session By: Infero - Programming Club, IIT Hyderabad. Building a W eb A pplication from Scratch. Planning : Basic Idea and Design. Early UI Planning. Sketch It. Planning : Architecture & Approach. CREATE TABLE cl_db.list_items (
E N D
Welcome to the Web! Session By: Infero - Programming Club, IIT Hyderabad
Planning : Basic Idea and Design Early UI Planning Sketch It
Planning : Architecture & Approach CREATE TABLE cl_db.list_items ( ListItemID INT PRIMARY KEY AUTO_INCREMENT, ListID INT NOT NULL, ListText VARCHAR(150), ListItemDone INT NOT NULL, ListItemPosition INT NOT NULL, ListItemColor INT NOT NULL )
Developing : User Interaction Connecting to Database <?php // Database credentials define('DB_HOST', 'localhost'); define('DB_USER', 'root'); define('DB_PASS', ''); define('DB_NAME', 'cl_db'); ?>
http://css-tricks.com/app-from-scratch-1-design/ Futureand Security