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 […]
PHP
Here you will find useful PHP tips and tutorials.
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 […]
Live Data Search with Multiselect Dropdown using Ajax, PHP & MySQL
Live Data Search functionality is very useful to filter data to see only required data. In this tutorial we have implemented live data search functionality with multi-select drop-down without using checkbox to filter data. The multi-select with checkbox functionality handled using Bootstrap-select plugin with PHP, MySQL and Ajax.