PHP

PHP Source Code

Free PHP Source Code. Download from a vast collections of free PHP source code below. You can modify and integrate it in your own personal use. Just give a little credit to the original author whenever you use it on your system's project.

JKUAT Unit Registration System

Submitted by theadmiraleliud on
This is a JKAUT unit registration online system online whose main aim is to standardize the process of capturing, storing and retrieval of student records. Those records are then made available at any other site that has subscribed to the framework. It is also aimed at enabling the faculty and records managers keep track of student records regardless of the university they attend and to enable

Student Information System (Mini Project)

Submitted by muskaan.sahu.3 on
Project Introduction: For every colleges important task for administration department is to manage student information details in a procedure oriented manner with latest updates for every year which need to be available for easy access. In order to provide this service we designed a simple Students information management system project which has various modules which is helpful for administration

Goods Transport Management System

Submitted by waqasyaqoob on
Goods Transport Management System is a web based application. This system helps to manage the Goods/Cargo Transport business. It provides the functionality to enter shipment information, enter loading detail, enter unloading detail, and the delivery information. It stores the information of containers to load the cargo and also keeps container off load details. FULL DOCUMENTATION ,PRESENTATION and

Grade Inquiry with subject Evaluation system

Submitted by jkev on
Online grade inquiry with subject evaluation system written using PHP/MySQL. The features of this system are as following: - add, edit, delete subject - add, edit , delete subject - add ,edit , delete course - add , edit , delete students - add image for students - view grades online - add, edit grade with corresponding equivalent - generate reports for grades - evaluate your next subject to be

Save XML file from database record using PHP and MySQL

Submitted by ronard on
Hi to all sourcecodesterian, In last tutorial, we preview the XML tags to the browser. Now we are going to save the XML file to the directory which is "xmlBackup/". We make it in just clicking the Save XML link below the table. Then the script will save it directly to the said path above. How it will help you guys. Thank you for reading... Happy codings...

PHP RegEx: Meta Character class

Submitted by ronard on
We already seen the caret(^) as match the the beginning of string and (\z) match at the end of string that what they do. Now we are going to look with the others with beggining of bracket []. These Meta character are specifying a character class. What does the character class? This is a set of character that you want to match the string. They can listed individually like [abcdf] or a range [a-f]

Preview XML record from database to browser using PHP and MySQL

Submitted by ronard on
Hi to all sourcecodesterian, I like to share this simple code on how to preview the XML to your browser from database. The script will call the data and retrieve it to the browser using XML tags. Hope you will like it and will help you. Just comment below. Happy codings...

PHP RegEx: With Meta Characters

Submitted by ronard on
In our last tutorials regarding ReGex we have some simple pattern of matching. We also use caret (^) For matching at the beginning of the string and (\z) to match at the end of the string. These characters are called Meta Characters and shown below. a. . (Full stop) b. ^ (Carat) c. * (Asterix) d. + (Plus) e. ? (Question Mark) f. { (Opening curly brace) g. [ (Opening brace) h. ] (Closing brace) i.