PHP Tutorial

Contact Us Script Using sqlite

Submitted by gateluv on
Sqlite is a relational database management system contained in a small C programming library. Sqlite is a popular embedded database system that stores records in a little file on the system source code. Data can be retrieved through the use of write and read ability of sqlite. Moreover, Instead of saving the record into a RDMS tool like “phpmyadmin”, Sqlite can be used instead as it will save the record into a separate file on the host machine. To create a contact us page on our website using sqlite.

PHP While Loop

Submitted by admin on
A While Loop can do a repetitive task that an if…then statements can’t. Just like if…then statement, it checks whether the condition is true or false. There are two different usage of While loop.

How To Create Youtube like Rating Using PHP/MySQL

Submitted by argie on
Hi everyone, this tutorial will teach you on how to create a youtube like rating or likes and dislikes rating using php and mysql. To start this tutorial lets follow the steps bellow to create this easy and nice code.

Step1: Create Our Database and its Table:

First step is to create our table in database to store the likes and dislikes votes. To create a database: 1. Open phpmyadmin 2. Click create table and name it as "database". 3.

Inline Input Validation using PHP with Javascript

Submitted by argie on
This tutorial will help you validate a control like text field using javascript and display the error inline with the text field. I write this tutorial to help other programmer having difficulties in creating inline input validation. It also validate the email address. To start this tutorial lets follow the steps bellow.

Step 1: Open Your php editor and copy/paste the code below

This code is the javascript portion of the entire system. This is used to validate the form.

Upload Images With re-size Using PHP/MySQL

Submitted by argie on
Hi everyone, this tutorial will teach you on how to upload images with re-size and save to database using php/mysql. to start this tutorial, let's follow the step provided.

Step 1: Creating Our Table

First step is to create our table in database to store the images uploaded. To create a database: 1. Open phpmyadmin 2. Click create table and name it as "images". 3.