Tag: PHP

Home » Posts Tagged "PHP"

Using AJAX in WordPress

What is AJAX? AJAX is a combination of HTML, CSS and JavaScript/jQuery code that enables to send data to a script, next to receive it and process the response without reloading the page. How AJAX works in WordPress? WordPress Ajax acts as a special Ajax dedicated WordPress action and is capable of handling the server…

Read More

Import CSV data file into MySQL using PHP

CSV files are known as comma separated values. It is one of the most preferred data storage methods. PHP supports various data formats like csv, json etc. and provides functions to handle such data formats. We can parse and store csv records in database using core PHP. Steps to import data from CSV data file…

Read More

HHVM vs PHP

PHP is the most popular scripting languages used for web development. PHP 7 is a new version of language that is been optimized for fast performance. It also has a rival HHVM (HipHop Virtual Machine) — a virtual tool that executes PHP code. There is a bit difference between these two, let’s have a look…

Read More