Showing posts with label PHP. Show all posts
Showing posts with label PHP. Show all posts
How to get the geolocation details of the user during a website visit

How to get the geolocation details of the user during a website visit

Hi, You will learn in this tutorial how to get the geolocation details of the user during a website visit. Basically, we need the visitor's location details to analyze the site webmasters to know which country users are visiting the site and also some area wise reports and interested post published on the website, For which post gains more traffic...
How to Export and Download the Mysql Table data to CSV File in PHP

How to Export and Download the Mysql Table data to CSV File in PHP

Hi, You will learn in this tutorial How to Export and Download the Mysql Table data to CSV File in PHP. Sometimes you need to Export the user's data to CSV file because if a client wants to send the emails from the Autoresponders like Aweber, GetResponse, Mailchimp, etc.. In this case, you need to provide the user's contact information in the form...
How to integrate the PayPal payment gateway in PHP

How to integrate the PayPal payment gateway in PHP

Hi, Today I am going to explain the major payment gateway used by all websites. i.e PayPal This is a very simple mechanism to integrate the Paypal payment gateway in web applications. First, we need the business email for the Paypal Account for this you have to sign up in the Paypal Website. Before going to integrate the Paypal in web applications...
How to convert the PHP Array to JSON String

How to convert the PHP Array to JSON String

Hi, In this tutorial, I am going to explain, How to convert the PHP Array to JSON String. If you want to convert the PHP Array to JSON String use the json_encode().It will convert the PHP Array to JSON String. Syntax: json_encode($array, Constant1 | Constant2 .... | Constantn); How to log out a user after 10 minutes of inactivity on the site Consider...