PHP

How to Scrape Bing Search Results with PHP?

This article help you to write a code scraping bing search results using php and simplehtmldom.

Learn More

How to generate a sitemap.xml file for a given folder using PHP?

Using a simple script you can generate sitemap.xml of any given folder. Learn how to generate a sitemap.xml file

Learn More

Traverse a directory in php

Sometimes, we need to traverse a directory. Here is the code to traverse a directory/folder. Exclude current and parent directory. This script display all the files and sub-directories in a current directory, including your current directory (“.”) and parent directory (“..”).

Learn More

PHP Pagination

Pagination means to show the information into multiple pages instead of one and when u say PHP pagination, it means that you want to show the records in multiple pages instead of showing all records in one page.

Learn More

Infinite scroll pagination with PHP & Ajax

Infinite scroll is a technique used in web design for pagination. It creates the illusion of a never-ending list of content on a single page.

Learn More

PHP Upload File

Some of the web applications need functionality to upload files on the server. This post tells you the problem and their solutions while uploading files on the server using the PHP upload file.

Learn More

PHP Template Engine

There are so many PHP Frameworks and PHP Template Engine available to build simple to complex business applications. But, Building a web application in core PHP is the best thing that every developer loves to do.

Learn More

PHP SQL Class in PHP Template Engine

In the previous post on PHP Template Engine, you have seen how I implement the custom PHP Template Engine. Here I am going to create a PHP SQL Class in a custom template Engine.

Learn More

Spintext

This is a simple PHP function to generate spintext functionality.

Learn More

How to scrape Bing People Also Ask QnA?

I have created this script by using Simple HTML DOM. The idea behind this script is simple. Open bing search and fetch “People Also Ask” from it.

Learn More

Capturing Full Div Content as Image with HTML2Canvas: How ReSetting HTML Height to 100% Solved the Issue

If you've ever tried to capture the full content of a scrollable div element as an image using HTML2Canvas, you may have run into the issue where only the visible portion of the div is captured.

Learn More