PHP

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 PHP snippet to get ...

By: CodexWorld Jun 20, 2016
PHP

Normally, a hyperlink can be used to open a file on the browser. In such a case, the file can download from the browser manually. If you want to download the file dynamically and save it on the local drive automatically, force the browser to download the f...

By: CodexWorld Jun 27, 2022
PHP

CRUD operation helps to Create, Read, Update and Delete database records. Add, Edit, Update and Delete functionality is commonly used in the data management section of every web application. You can easily implement the CRUD operations with MySQL in PHP. G...

By: CodexWorld Dec 27, 2018
PHP

Sometimes you need to free the space of the web server by deleting old or specific or all files from a directory. Using the glob() and unlink() functions you can easily delete all files from a folder without aware the files name. Here we'll provide the sim...

By: CodexWorld Nov 6, 2023
PHP

The infinite page scroll is one type of pagination where the user doesn't need to click on the link to load dynamic data. The dynamic data is loaded from the server automatically while scrolling page down. Infinite Scrolling effect is the best replacement ...

By: CodexWorld Feb 22, 2018
PHP

PDF is used to download a bunch of data or text content in the web application. The PDF file format is the perfect choice to download text or HTML content in a file. At the time of downloading web page content as a PDF file, it requires converting HTML to ...

By: CodexWorld Nov 15, 2022
PHP

PHP Event Calendar is a user-friendly way to display events dynamically from the database. Not only list the events, but you can also provide an option to add events to the calendar for a specific date. Based on the selected date, the event will be added t...

By: CodexWorld Apr 8, 2021
PHP

Latitude and longitude contain various information related to geo data. You can get geographic info including address from latitude & longitude coordinates. Google Geocoding API provides an easy way to get address from latitude and longitude. If you have l...

By: CodexWorld Jan 1, 2024
PHP

Post to Facebook wall is useful when you want to post dynamic content to Facebook from the website. Here we'll build a simple PHP script to publish Facebook post from the website using Facebook PHP SDK. This functionality lets the user post message, pictur...

By: CodexWorld Sep 10, 2018
keyboard_double_arrow_up