Skip to content

mkforks/workshop2018

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Reading material, instructions and code for the Workshop 2018

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • PHP 47.1%
  • CSS 27.3%
  • HTML 25.6%