Posts

Showing posts with the label php

Friend Request System Using PHP and MYSQL

Image
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 ...

Login, Signup and Logout Script using PHP and MySQL

Image
Login, Signup or Logout these are the three things which you have  done in daily social networking sites.So, today post is related to that one.Firstly,I will show you how the signup process work .In my project i have taken three fields E-Mail, Username and password.We select email as a primary key. Database Design: email varchar(100)  PRIMARY KEY.. username varchar(100) password varchar(30) Signup Form: <form name="form1" action="index.php" method="POST"> <input  type="email" name="email" placeholder="E-Mail"  ><br> <input type="text" name="uname" placeholder="Username"  ><br> <input  type="password" name="pwd" placeholder="Password" ><br> <input name="signup" type="submit" value="Sign Up"> Signup.php In this PHP file i will show you some query and logics. ...