Friend Request System Using PHP and MYSQL
Facebook site gave its members an easy way to connect with each other one-on-one based on shared interests and other profile information.So, this post is tells how you can make your own friend request process using a simple codes of PHP and Mysql. This project starts with the login & signup process in which you have to first login with your valid email ID or password you can send request to the particular friend, accept or delete friend request or even unfriend option are also resides in this project Let's start Database Design: In this tutorial there are three tables: 1. Signup table id int (5) email varchar (100) username varchar (50) photo varchar (150) password varchar (25) 2. Request table id int (5) from varchar (100) email varchar (100) 3. My Friend table id int (5) email varchar (100) friend varchar (100) Send Friend Request : This is the first step in which you have to send friend request to the person and it depends on him ...