php PDO and jQuery AJAX tutorial with example source code

Spread the loveLast updated:22nd March, 2021php PDO tutorial with jQuery AJAX PDO or PHP Data Objects is an extension of php that is used to access databases. In a previous post php MySQLi tutorial, we learned about mysqli extension. In this tutorial we are going to learn about php PDO library. mysqli extension is used with MySQL database only while …

Read More »

How to generate xml files using php and mysql database

generate xml files using php and mysql

Spread the loveLast updated:5th February, 2022How to generate XML files using php XML is a popular data interchange and storage format used on the internet. XML stands for eXtensible Markup Language. Custom markups can be created in XML. XML was designed to describe data while HTML was designed for data presentation. In a previous tutorial we learned how to parse …

Read More »

php mysqli tutorial for beginners with example source code

php mysqli tutorial for beginners

Spread the loveLast updated:3rd March, 2021php mysqli tutorial for beginners Now a days  to develop complex web sites you must need database interaction. With PHP mostly we use MySQL. To access mysql database we can use mysqli or PDO libraries available in php. In this tutorial we are going to explore php mysqli library functions. PHP mysqli extension provides methods …

Read More »

How to watermark images using codeigniter php framework

Watermark images using codeigniter

Spread the loveLast updated:6th May, 2017How to watermark images using codeigniter Codeigniter is very popular MVC php framework. Images can be processed very easily in codeigniter. In previous tutorials we discussed basics of GD library in php and codeigniter file upload. But if you need to upload and manipulate images like crop, rotate, resize or watermark images using codeigniter, this …

Read More »

How to create a mysql trigger and execute with php

php mysql trigger tutorial

Spread the loveLast updated:9th March, 2019How to create mysql trigger with php What is mysql trigger? A mysql trigger is a stored database object that is always associated with a database table and is executed automatically when a particular defined event occurs. Events when a mysql trigger is executed As stated before a mysql trigger is executed automatically BEFORE or AFTER …

Read More »

How to create a jQuery drag and drop todo list with php MySQL

jquery drag and drop todo list

Spread the loveLast updated:9th March, 2019How to create a jQuery drag and drop todo list jQuery is very popular JavaScript library in web development community. It is used to perform a wide variety of tasks. In a previous article we explored jQuery AJAX example with php MySQL. Here you will learn how to create a jQuery drag and drop todo …

Read More »

How to manipulate images and work with GD library in php

php generate thumbnail using php gd library

Spread the loveLast updated:28th December, 2017How to manipulate images and work with GD library in PHP Graphics are used to make a website more beautiful and you can use many tools like Adobe Photoshop for that but in a lot of places, we need dynamic image manipulation. For this purpose, we can use GD library in PHP. In this article, …

Read More »

How to zip, save and download a file in codeigniter

Codeigniter zip, save and download a file

Spread the loveLast updated:1st May, 2021How to zip, save, download a file in codeigniter In this article we are going to see how to zip, save, download a file in codeigniter PHP framework. CodeIgniter is a very popular PHP framework. A previous article is about how to upload  a file using codeigniter PHP framework. CodeIgniter framework you can do many …

Read More »