示例#1
0
<?php

/* 
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
//session_start();
include_once './model/TrainStationsDB.php';
var_dump(TrainStationsDB::getAll()[rand(0, 262)]["Name"]);
$_SESSION["StationA"] = isset($_SESSION["StationA"]) ? $_SESSION["StationA"] : "11111";
$_SESSION["StationB"] = isset($_SESSION["StationB"]) ? $_SESSION["StationB"] : "22222";
$_SESSION["Username"] = isset($_SESSION["Username"]) ? $_SESSION["Username"] : "******";
$_SESSION["Password"] = isset($_SESSION["Password"]) ? $_SESSION["Password"] : "******";
$_SESSION["Module"] = isset($_SESSION["Module"]) ? $_SESSION["Module"] : "ABC";
//$_SESSION["StationA"]="11111";
//$_SESSION["StationB"]="22222";
//$_SESSION["Username"]="******";
//$_SESSION["Password"]="******";
//$_SESSION["Module"]="ABC";
<?php

/* 
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
include_once './model/TrainStationsDB.php';
include_once './model/TrainStationsNearDB.php';
//echo "//START_________>";
$TrainStationData = TrainStationsDB::getAll();
$TrainStationDataMaxRecords = sizeof($TrainStationData);
//$TrainStationEditorMode=;
//echo "<b>";
//echo $TrainStationDataMaxRecords;
//echo "</b>";
// Init Stations for Javascript:
// Format :
// var Stations =[new google.maps.LatLng(45.886277,13.902437), ... ];
//var_dump(TrainStationsDB::getAll());
echo "var Stations =[";
for ($i = 0; $i < $TrainStationDataMaxRecords; $i++) {
    echo "new google.maps.LatLng(";
    echo $TrainStationData[$i]["Lat"];
    echo ",";
    echo $TrainStationData[$i]["Lng"];
    if ($i < $TrainStationDataMaxRecords - 1) {
        echo "),";
    }
}
echo " )];";