Recently we have published tutorial to Export Data to Excel with PHP and MySQL and get huge response from our readers. Many of our users requested to also publish tutorial to export data to CSV using PHP and MySQL. The CSV (comma separated values) format is the most popular file format to use for data […]
php tutorial
Check User Availability with PHP and jQuery
Checking username or email availability before form submission is a popular feature. In this tutorial, we have implemented username availability check functionality using PHP, MySQL and jQuery AJAX.
YouTube Video Downloader Script in PHP
YouTube is the most popular videos sharing platform where we watched videos online. However, we often need to get those YouTube videos for offline uses. If you’re a PHP developer then definitely you’re looking for a PHP script to download YouTube videos on your local server. So here in this post, we will explain how […]
Using PHP regex to remove link but keep anchor text
Sometimes we need to remove anchors from html while displaying html content. You can easily remove links or anchors from a html content using PHP preg_replace() function with regular expressions.
Remove an item from comma separated string using PHP
Sometimes we need to remove specific item from comma separated string. Here is a running PHP function to remove an item from a comma-separated string. The function will remove the selected items from the string and return the remaining parts of the string.