php

Product Information System in PHP/MySQL (Shopping Cart)

Submitted by donbermoy on
This is a Simple Product Information System that is capable of adding products with product name, product price, category, sub category, product details. This system can also add image of the product you wanted to add. Then the added products will go to its home tab with its information and images to be the list in shopping cart. Note that this system is not yet complete because i haven't done

Talk it in PHP!

Submitted by abubasil on
Hi all. Thank you for this great website, This is my little "thank you". once upon time I was learning Ruski yazik and teaching Arabic... by then I was making my first steps with mysql ..I made this code to help others to learn my native language..here I have changed the symbol of lang into "en" to make it understandable for you. those who are non-english speakers can modify it a bit to help

Student Information System (PHP)

Submitted by donbermoy on
This Student Information System was developed using PHP and MySQL Database integration. This was one of the student projects in their php subject that i made when I was still a student. This system is just simple but it has the capabilities of creating user registration, has admin panel, creating student records as well as modifying, deleting, and searching, then displays the student information

Simple PHP Blog

Submitted by yethroy on
This is one of good Blog Application that allow user to create new blog category. Add new blog post in a given category. Display all blog posts, all blog categories with their posts. In the source there is blog.sql file just create a new database called blog then import it to that database and enjoy. for any questions contact me in private message system of this website or through email yethroy

Sending Email using Gmail SMTP in Swiftmail with PHP

Submitted by ronard on
Hi Sourcecodesterian, I would like to share this code that I used in my current project. This will teach you on how to send email using gmail smtp in swiftmail libraries. I used swiftmail because this is very easy to use and configure. Just follow the comments inside the script of index.php. Please ensure that you have gmail credentials to send message. Thank you for reading hope it will help you

Patients With Doctors Recorder

Submitted by killerzone on
Title: Patients With Doctors Recorder Language : PHP,ajax,javascript Tags: PHP Ajax Javascript Jquery Features: Management Add patient and Doctor Update patient and Doctor Delete patient and Doctor Search patient and Doctor System Requirements: Xampp 1.7.3 or below Chrome,Firefox,Opera. etc. How to Install? Download the following files by clicking download below Extract the zip files to htdocs

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]

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.