Lusha API using PHP curl
The Lusha API returns data of business profiles. It can access a user’s phone, email, and location. It is available in REST architecture with API Key by request using PHP curl. Example
The Lusha API returns data of business profiles. It can access a user’s phone, email, and location. It is available in REST architecture with API Key by request using PHP curl. Example
In this tutorial i will show you how to add days to date in PHP. Many project need this type speciality suppose, user subscribe account in 2 days need to two days add in current date. You may also like How to add one day in current date using php. The following source code will add […]
To make any calls to Udemy REST API, you will need to create an API client. API client consists of a bearer token, which is connected to a user account on Udemy. To send authenticated requests, provide the client_id and client_secret values as a base64 encoded HTTP Authorization header. You may also like curl request in […]
This is a short guide on how to get the date of the week from a monday to sunday in PHP. This is useful for whenever you need to figure out what date a particular date fell on (or will fall on in the future). In this tutorial, I will be retrieving the date from […]
In this post we will not discuss simple Comment system in which only single user can submit their comment. We all know comment or even we can also called review are best way to keep make connection between website content owner and reader of that content. HTML, CSS, Ajax and PHP Code PHP Code (post_comment.php)
In this article, we will talk about creating our own search engine with the help of PHP and MySQL. Our goal is not to replace the big giants e.g. Google, Yahoo etc but to give a good attempt in order to have our own search engine. In this article we will talk about the basics […]
In this totorial i will show you how to get facebook like, share and comment count using php in Here’s the final code that goes into your website project. Copy this code and test your server. You may also like How to Make Auto Post in Facebook Using PHP HTML Code PHP Code
In this tutorial, we will show you how to implement relational dropdown of state to city using jQuery, Ajax, PHP, and MySQL. Means state is related to city. Based on changing of state & city will be fetched from the database without reloading the page using jQuery, Ajax, PHP, and MySQL. You may also like How […]
Alexa traffic rank is a value given to any website by alexa based on it’s traffic. A lower traffic rank means higher traffic volume to a website. Alexa is providing an paid API to access it database. But there is a way to do this for free. To get this data in XML format use […]
PHPExcel has several classes inside it to handle different objects. Inorder to handle a worksheet we need to use PHPExcel_Worksheet. This class provide a funtion called toArray() which can be used to convert an Excel worksheet into a php array. Syntax Example