admin

admin

How to create Ajax Pagination with jQuery & PHP

php

we are going to see an example PHP code to add ajax pagination to a list of records retrieved from database. pagination is a very important part where huge numbers of records are listed from the database. jQuery function call to…

How to use curl in php?

php

Basic curl example php curl: simple post request and retrival of page example. Just use below code in your script. $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => “”, CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => “”, CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 30,…