WebSite-PHP Framework PHP
Mehrsprachig
Einfacher Ajax Modus
Kein HTML, kein JavaScript
URL Rewriting
Mails senden
Sitemap - RSS - Web service
Laden Sie WebSite-PHP FrameWork jetzt herunter
 


Loading
 


Tutorial : City and country Geolocation

Tutorials

>

Tutorial Geolocation

>

Tutorial : City and country Geolocation


Geolocation-02: Tutorial der Komponente Geolocation vom PHP FrameWork WebSite-PHP.

Tutorial : City and country Geolocation:

You have been detected in Columbus United States of America


Zurück zum Tutorial der Komponente Geolocation



Quelltext

Quelltext


Datei: /pages/tutorials/geolocation/geolocation-02.php

<?php
class Geolocation02 extends Page {
    public function 
InitializeComponent() {
        
parent::$PAGE_TITLE "Tutorial : City and country Geolocation";

        
$geo = new GeoLocalisation();

        
// You need to create a key on the page:
        // http://ipinfodb.com/register.php
        
$geo->setKey("IPINFODB_KEY");

        
$geo->askUserToSharePosition();
        
$geo->setRemoteIP();
        
$geo->getGeoLocation();

        if (
$geo->getCity() != "" && $geo->getCountry() != "") {
            
$this->render = new Label("You have been detected in ".
                
$geo->getCity()." ".$geo->getCountry());
        } else if (
$geo->getLatitude() != "" && $geo->getLongitude() != "") {
            
$this->render = new Label("No city Geolocation, but you have been locate:<br/>" .
                
"Latitude = " round($geo->getLatitude(), 2) . "<br/>" .
                
"Longitude = " round($geo->getLongitude()));
        } else {
            
$this->render = new Label("No city Geolocation");
        }
    }
}
?>


Zurück zum Tutorial der Komponente Geolocation


Share

 


Copyright © 2009-2024 WebSite-PHP Framework PHP
Start Dokumentation Herunterladen Schnellstart Tutorials Wiki Issue Tracker