PHP

E-learning CMS(Content Management System) based website coded in PHP.

Submitted by ifeco on
This is a CMS(Content Management System) based website coded in PHP. The admin can Update or Delete the content of the website through the admin panel. I did this as my project in my final year some months ago. I also made a downloadable pdf file for each topic of the content which the user can download through the download link in the navbar of the homepage. The user can also search the topics of

Kingsfield Express Inn Hotel Reservation Cagayan Branch

Submitted by michael.galanza on
Kingsfield Hotel Reservation Cagayan Branch. Steps to run the system 1.Create Database name kingsfield_database. 2.Create Username to your wamp server kingsfield the password must be michaelhunter1990. 3 Import the database from the file. Hope this system guide you and this will be usefull without any warranty For more info Please PM me @[email protected] or at facebook michael fujimura

Online Hall Reservation System using PHP

Submitted by sminuwa on
Hello everyone, This is "Online Conference Hall Reservation system" actually I got a code of booking system from argie tamera. And I changed it to conference hall reservation system. I've added a lot of thing in it, such as if a hall has been booked people will book for sits in the hall And if one booked a sit no one will book the sit again Honestly the thing look interesting, You can contact me

Auto Recognise Users via IP Address Through PHP/MySQLi

Submitted by Yorkiebar on
Introduction: This tutorial will show you how to quickly identify your website users through their IP. Database: First we will need a database (mine is 'fln'), a table - 'test', and columns with data. My columns are; id, int, 5 length, primary key, auto increment username, varchar, 255 length ip, varchar, 255 length The IP field does not have to be 255 characters long but it will help to avoid

Retrieving Specific Data in MySQL/PHP

Submitted by Yorkiebar on
Introduction: This tutorial is on how to retrieve specific data from a database through PHP and MySQL/MySQLi. Latest: In my latest tutorials I have shown how to retrieve all rows from a database table, how to insert data, and how to validate data. Now I will show you how to retrieve specific data through slightly more advanced queries. Database: First you will obviously need a database with table

Validating and Inserting User Data in PHP/MySQL(i)

Submitted by Yorkiebar on
Introduction: This tutorial is on how to take user input, check it against a database, and insert if it is not already present. This could be used for registration in terms of unique usernames. Database: First we need a database with one table. My database is called 'fln', table is called 'test', and it has two fields: id, int, 5 length, primary key, auto increment. username, varchar/string, 255

Inserting Data in PHP/MySQL

Submitted by Yorkiebar on
Introduction: This tutorial is going to be on how to insert data in to a MySQL table through PHP. This is in companionship with my 'How To Retrieve Data' tutorial found here (http://www.sourcecodester.com/php/7510/retrieving-data-mysqlphp.html). 'Insert': To insert data in to a MySQL table, we have to use the 'INSERT' keyword command in our query statement. Steps: First we need to create the data

How To Get Dropdown List From Database

Submitted by GeePee on
This is sample project on how to get a dropdown list from the database. This project is very simple and easy to understand especially for beginners. I have one dropdown list which contains car brands. When the user choose an item from the list, it automatically display all the recorded car model under the selected brand/item. Hope you learn from this simple project.