Browsing Category
PHP
A Beginner’s Guide to PHP tutorials easy to understand PHP tutorials for mastering the basics and beyond, PHP Latest Tips & Tricks,PHP ready code,PHP resource,PHP latest examples demo
Example – Create custom Twitter Widget using PHP
Twitter Embedded timelines are an easy way to display multiple Tweets on your website. You can easily implement Twitter Embedded Timelines into your website from twitter widgets creation section. But some time we need to customize…
Dynamic Dependent Select Box in PHP
The dynamic dependent select box is mostly used for country state city dropdown. In this tutorial, we’ll implement relational dropdown of country state city using jQuery, Ajax, PHP and MySQL. Means state is related with country and city…
Example – Send Email from Localhost in PHP
Most of the web projects have the email sending functionality. Before uploading to the live server email functionality need to be checked on the local server. But PHP mail() function will not work at the localhost. In this article,…
Tutorial ~ Stripe Checkout Integration in PHP
Stripe is the most popular payment gateway to accept credit card payment in the web application. The Stripe API provides and secure and powerful solution to integrate the checkout system in the website. You can allow the user to make…
Example – Post to Facebook Wall from Website in PHP
Facebook is the most popular social media and shares on the Facebook wall are the most used activity by its user. Facebook share option is a common and required feature for every web application. We can easily share the post to Facebook…
Get Google Maps Address from Latitude and Longitude in PHP
In this article, you’ll know how to get address from latitude and longitude using Google Maps API in PHP. Here we’ll provide a simple PHP script to get location from latitude and longitude. The whole script combines into a PHP function…
Example – Load Data on Page Scroll using PHP jQuery Ajax from MySQL Database
Database Table Creation
Create a table named posts into the database (for example tutspointer). Example SQL query for creating posts table is given below.
Data will be fetched from this posts table and display in the data list. So,…
Delete Files from Folder using PHP Example
Sometimes you need to free the space of the web server by deleting old or specific or all files from a directory. Means you want to remove files from the folder without know the name of the files. This type of functionality required for…
How to Get YouTube Video Thumbnail Image URL using PHP Example
In the present day, YouTube embed video is used on many websites. Many web project needs to implement a YouTube video gallery where YouTube video thumbnails are dynamically listed in the gallery. In this article, we’ll provide the short…
OOP CRUD Operations use to PDO Extension and MySQL in PHP
There we’ve using MySQLi to connect database and database-related operations. After publishing that article we received many requests from our readers for PHP CRUD tutorial with PDO extension and MySQL. They also mentioned that they are…