PHP Tutorial for Beginners

Handling Dynamic Data Fields using Database Vertical Table Design in PHP Tutorial

Submitted by oretnom23 on

In this tutorial, we will tackle Handing Dynamic Data Fileds using Database Vertical Table Design. This idea is very useful for such web applications that handling multiple data. This will prevent multiple columns in your database table. Also, this will help you to store new data fields without making changes in your database table structure.

How to Limit Data to Display and Load when scrolled to bottom in PHP and jQuery Tutorial

Submitted by oretnom23 on

In this tutorial, we will tackle about how limit the data to display from database and load automatically when scrolled to bottom using PHP and jQuery. This technique is very useful especially to optimize the speed of loading bulk data. This feature is commonly used in social network sites like the Facebook news feed, it shows limited posts at first and when you reached the bottom of the page, it will automatically load another data. To meet our goal for this tutorial, we will be using MySQL LIMIT and OFFSET Clause.

Creating An Audit Trail/Logs in a Web App using PHP/OOP and Ajax Tutorial

Submitted by oretnom23 on

In this tutorial, we will tackle about how to create an Audit Trail/Audit Log feature in a web application using PHP/OOP and jQuery Ajax. This feature is useful and a common feature for software or web applications. This is usually included in the project for an application that can be managed by multiple users. With this feature in your PHP Project, you can easily track or monitor the changes or actions made by the user.

Creating an Image Slideshow Using PHP and Simple jQuery Tutorial

Submitted by argie on

Hi everyone! This tutorial is about on how to create an images slideshow using PHP and Simple jQuery. This program requires only a few lines of code. The source code file contains only a simple CSS, Images Container/HTML, jQuery Scripts, and PHP script for listing all the images from a directory. The script is easy to understand.

Now, we will be creating a simple web application and our main goal is to display the slideshow in an HTML container and each slide will be shown at every specific time using the fade-in animation. To this, follow the steps below.

Resizing the Uploaded Image in PHP using GD extension Tutorial

Submitted by oretnom23 on

In this tutorial, you will learn how to resize the image file before saving it into a directory using PHP and GD Library. This process is really useful when you are developing a web application using PHP Language which has some features that include uploading Image files such as system users avatar, image/gallery thumbnails, and etc.

PHP GD extension/library offers Graphics Drawing toos to manage image data such as cropping, compressing, filtering, and etc.

PHP CRUD without Refresh/Reload using Ajax and DataTables Tutorial

Submitted by oretnom23 on

In this tutorial, you will learn how to create or develop a PHP CRUD Operations w/o Pagre Refresh/Reloading using Ajax and DataTables. Here, we will enlist the data from the database using the server-side processing of DataTables. This tutorial is helpful especially for optimizing the page load of your future PHP Project.

Replacing Plain Text Links to HTML Anchor Tag in PHP Tutorial

Submitted by oretnom23 on

In this tutorial, we will tackle about Replacing the Plain Text Links of a content with an Anchor Tag of HTML using PHP. We will be using the PHP's preg_replace() function. For those who dont have any idea about the preg_replace, this function replace all the occurence of a string that matches the given pattern to your desired format or replacement string.