lugdanum a écrit :
hello
En php tu peux essayer en faisant par exemple :
Code :
- <?php
- $array = explode("\n", file_get_contents('http://tgftp.nws.noaa.gov/data/observations/metar/stations/EBBR.TXT'));
- print '*****.be/decodemet.php?metar='.$array[1];
- ?>
|
@+
|
Lugdanum, ce n'est pas exactement ce que je souhaitais faire (ne pas afficher mais utiliser cette ligne comme adresse internet à afficher), mais grâce à toi je suis parti sur une bonne base et après 20 min de recherche j'ai trouvé la solution.
Un grand merci à toi !!
Si cela peut aider certains, voici la solution (enfin ma solution, qui n'est peut-être pas la plus "propre" au vue des pros ) :
Code :
- <?php
- $array = explode("\n", file_get_contents('http://tgftp.nws.noaa.gov/data/observations/metar/stations/EBBR.TXT'));
- header("Location: http://****.be/decodemet.php?metar=$array[1]" );
- exit();
- ?>
|