PHP get visitor details without any third party web site registrations or keys.Get visitor IP address,region,latitude,longitude,Country,visitor map with php.Look at this example you can get visitor all details even latitude,longitude and country details.
Category: PHP
PHP examples,scripts,demo and download php source codes.PHP is a widely-used general-purpose server side scripting language that is especially suited for web development. The current stable version is 5.4.5, released on July 19, 2012, while many are still on the old stable version, which is 5.3.
PHP check duplicate values in an array and return it
How to check duplicate values in an array and return it using PHP?Also telling php check wild card value in an array and return those values.For a example you want to check number of times that values exist and return…
PHP IP address based redirect example
This is a IP address redirect example.Check visitor IP address is exist in the IP address list/black list and if exist then visitor redirect to the another location using php.You can put your IP addresses list as line by line…
PHP read file line by line to an array
How can you read file, like text file line by line and get contents to and array using php? This can be using “FILE_IGNORE_NEW_LINES”.Here is a tested example to read text file line by line and create an array.
increase execution time file size memory limit in php.ini
How to increase max execution time, file upload size, memory limit in php.ini file and htaccess file? When you are executing large file you have to seen Fatal error: Maximum execution time of 30 seconds exceeded in…., Fatal Error: Allowed…
Read Excel file and save details to database using PHP
How can you read and display excel file using php and save that details to the database? You can use this simple php class to do this.That is read row by row while reading column by column.While reading like this…
Display each users location in google map using address in PHP and Java Script
Display each users locations in the google map after submitting his addresses using php and java script.This is displaying using location latitude and longitude.That is marked by red bubble.You can customize map types as ROADMAP,SATELLITE,HYBRID or TERRAIN, displaying controls….etc.
Connect with multiple databases using PHP
How can you connect and transferring data with multiple databases using php.Only using mysql_connect to simultaneously multiple databases to create multiple databases connections.
Files transfer via FTP using PHP
How to connect to the web server,upload files and download files,create a directory, delete a directory,get list of the directory via FTP using php.You can transfer any type of files between server and your pc.If you don’t know what are…
Creating zip files using PHP
How can I compress specific files or compress specific folder or compress bulk files using php.Only you want to add zip class and pass parameters as you want. This class can be used to create archives of compress files in…