Welcome to the Web! Session By: Infero - Programming Club, IIT Hyderabad
Building a Web Application from Scratch Security Security measures Future Developing AJAX interactivity User Interaction Designing Workflow Map HTML/CSS Planning Basic Idea and Design Architecture & Approach
Planning : Basic Idea and Design
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 )
Workflow
Developing : User Interaction <?php // Database credentials define('DB_HOST', 'localhost'); define('DB_USER', 'root'); define('DB_PASS', ''); define('DB_NAME', 'cl_db'); ?> Connecting to Database
Developing : AJAX Interaction
Future and Security