Web scraping (also known as data extraction or data mining) allows to scrape data from web pages. The web scraping can be done manually, but usually refers to automated processes by bots or crawlers. The REST API interfaces are created to scrape website data. So if you’re looking for solution to scrape web pages using […]
PHP
Here you will find useful PHP tips and tutorials.
Export Data to CSV with Date Filter using PHP & MySQL
CSV (comma separated value) is well known file format to store tabular data. In our previous tutorial, we have published tutorial to Export Data to CSV with PHP and MySQL and get huge response from our readers. Many of them requested for tutorial to export data to CSV with date range filter. So in this […]
Convert Associative Array into XML in PHP
XML (Extensible Markup Language) is a common markup language which is used in web applications to read and write dynamic data. When we have issue with database size to store dynamic data then XML file format is the best to store dynamic data and retrieve according to needs. So if you’re thinking about storing your […]
Convert XML into Associative Array in PHP
XML (Extensible Markup Language) is a markup language that is widely used to store data in a machine and human readable format. We can easily read and write data from XML file to use in our web applications. If you’re developing a web application and wants to store data to a file instead of database, […]
Product Filter Search with Ajax, PHP & MySQL
Product Filter Search functionality is very popular in eCommerce website to allow product search with different options like product price range filter and checkbox search filter etc. So if you’re thinking about implementing product filter search functionality in your project with product feature options, then you’re here at right place. In this tutorial you will […]