PHP

Online Ordering System

Submitted by Jeprox on
This Simple Online Ordering System has been written using PHP. You can add, edit, delete products, multiple ordering of products, can upload image product and can leave a message to the website and if you want to go to the admin page just type /admin in the URL. The main feature of this system is the shopping cart. db name: it.sql admin username: admin admin password: admin

Online Public Access Catalog for Researches

Submitted by Jeprox on
Online Public Access Catalog for researches is for viewing and providing information about thesis, capstones and about the authors. It aims to give the students the proper reference that they will need and to know the location of the Special Projects made by the previous batch of students. The user can search by author, title, year and location. Admin Username: admin Admin Password: admin

How To Use Function checkdate() Using PHP

Submitted by alpha_luna on

Good Day!!!

In this tutorial, we are going to learn PHP function, and it's called "checkdate()". The checkdate() function returns true if the specified date is valid, and false otherwise.
A date is valid if:
  • month - is between 1 and 12 inclusive
  • day - is within the allowed number of days for the particular month
  • year - is between 1 and 32767 inclusive
This function has this form:

Online Virtual Assistant

Submitted by rdpantino on
Library - Search Engine for thesis and capstone records. A search engine system for capstone/thesis of the students in the school. It allows administrator to manage accounts of students that are able to use the system. Manage Course and Category courses that is offered in the school. Records Projects of the students who submitted or passed their thesis and capstone. Allow searching of thesis

Codeigniter - Technical Support System

Submitted by rdpantino on
This is a full system called Technical Support System. The system function as a support to those who have problems using the computer as they can report to the administrator what is wrong on it, and for the administrator to monitor the computers and hardwares Modules -accounts -computer profile -home -inbox -inboxadmin -login -logout -purchase -request -solution This system is made on Codeigniter

Add, Update, Delete, Search, Print in PHP

Submitted by mase on
In this package you will learn how to add record, update, search, print or even delete records. =================================================================== INSTALLATION AND CONFIGURATIONS =================================================================== 1. Install wamp5 2. After Installation, copy folder "IC", go paste in the directory below C:\wamp\www 3. Upload database http:/

How to Create Login Page in PHP and MySQL with Session

Submitted by GeePee on
How to Create Login Page in PHP and MySQL with Session In my previous tutorial called "How to Create Secure Login Page in PHP/MySQL", I explain on the three ways on how create a login page using PHP/MySQL. This time, I will add more functionality on this tutorial. We will add session so that we will know if the visitor has logged in on our site or not. In PHP, there is a variable called $_SESSION. Session allow you to store information and used it in any pages that you like.