/workshop2018

Reading material, instructions and code for the Workshop 2018

Primary LanguagePHP

Building your first dynamic web application

This is the repository of the application developed during a workshop conducted on 14 October 2018 by IMG at IIT Roorkee.

Application developed: Blogger

The main objective of the workshop was to develop a dynamic application in a limited time of 4 hours.

Technologies used (LAMP, WAMP or MAMP)

  • PHP
  • Apache
  • MySQL

Database table design

+------------+--------------+------+-----+---------+----------------+
| Field      | Type         | Null | Key | Default | Extra          |
+------------+--------------+------+-----+---------+----------------+
| id         | int(11)      | NO   | PRI | NULL    | auto_increment |
| post_title | varchar(255) | NO   |     | NULL    |                |
| content    | text         | YES  |     | NULL    |                |
| author     | varchar(255) | NO   |     | NULL    |                |
| posted_on  | date         | NO   |     | NULL    |                |
+------------+--------------+------+-----+---------+----------------+

Reading material

Step by step development

The commit history can be checked out to get the insights of the different stages of development. Can be seen here

Setup

Detailed guidelines for setting up the project can be viewed at SETUP.md

Additional features that can be added to this project

Further queries

Feel free to open issues if facing problems with the code written. IMG is always there to help.