This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function winClose() | |
{ | |
window.top.opener=null; | |
window.close(); | |
} | |
function closeWindow() | |
{ | |
window.open('','_parent',''); | |
window.close(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
//ON INCLUS TOUTES LES VARIABLES NECESSAIRE A BIXI | |
//require_once ("../../path.inc.php"); | |
//////////////////////////////////////////////////////////////// | |
//ini_set(allow_url_fopen, 1); | |
function getAllStationsWithoutId(){ | |
$in="https://profil.bixi.ca/data/bikeStations.xml"; | |
$content= file_get_contents($in); | |
$xml=new SimpleXMLElement($content); | |
//Cr�ation d un tableau tres accessible |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
set_time_limit(0); | |
/* | |
* Okay, the project is LIFE.php so we want to skip all the boring pre-life part. | |
* Thanks to php, we can just do a 5 billion years sleep. | |
* | |
*/ | |
define('YEAR',3600*24*365); |
NewerOlder