Skip to content

DorkArn02/blog_system_php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 

Repository files navigation

Webprogramming I. final project

Project description

This is a simple blog system in PHP in which you can create posts and comments. Before you start posting you must create a new account, then login with your username and password combination.

Database

In this project I used MySQL database. There are 3 tables in the database: posts, comments, users.

Users table:

Attribute name type
id (PK) INT
username VARCHAR(255)
password VARCHAR(255)
email VARCHAR(255)

Posts table:

Attribute name type
id (PK) INT
title VARCHAR(255)
description TEXT
content TEXT
user_id (FK) INT
created DATE

Comments table:

Attribute name type
id (PK) INT
content TEXT
user_id (FK) INT
post_id (FK) INT
created DATETIME

Project screenshots

image

image

image

image

image

Rich text editor

I used this rich text editor in my project: https://www.tiny.cloud/

About

Webprogramming I. final assignment

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published