80 likes | 165 Views
Explore the planning, design, development, and security aspects of creating a web application from the ground up. Learn UI sketching, database connection, AJAX interaction, and more. Follow Infero's programming insights from IIT Hyderabad for comprehensive knowledge.
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