Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $park=$_GET['park'];
- $disp=$_GET['disp'];
- $reading=fopen('mapbis.html','r');
- $writing=fopen('temp.html','w');
- $replaced=false;
- while (!feof($reading)) {
- $line = fgets($reading);
- if (strpos($line,"label: 'P".$park."',")!==false) {
- $line = " type: '".$disp."', label: 'P".$park."',\n";
- $replaced = true;
- }
- fputs($writing, $line);
- }
- fclose($reading); fclose($writing);
- if ($replaced) {
- rename('temp.html', 'mapbis.html');
- }
- else {
- unlink('temp.html');
- }
- echo '<html>
- <head><title>Editor</title><meta name="viewport" content="width=device-width, user-scalable=0, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" /></head>
- <body><center>
- <form action="editorbis.php" method="get">
- <br><br>
- Parcheggio n°: <select name="park"><option value="1">P1: Corriere</option><option value="2">P2: Residence 2000</option><option value="3">P3: S. Pietro fronte</option><option value="4">P4: S. Pietro lato</option><option value="5">P5: Rosti</option><option value="6">P6: Stazione scambiatore</option><option value="7">P7: Via Marconi</option><option value="8">P8: Autoscuola</option><option value="9">P9: Rosso di sera</option><option value="10">P10: Viale Venezia</option><option value="11">P11: Via Ghandi</option><option value="12">P12: San Marco</option></select><br><br>
- Posti liberi: <select name="disp"><option value="verde">VERDE: 20+ posti</option><option value="giallo">GIALLO: 1-19 posti</option><option value="rosso">ROSSO: 0 posti!</option></select><br><br>
- <input type="submit" value="AGGIORNA">
- </form>
- <br><br>
- <a href="mapbis.html" target="_blank">Vedi mappa</a>
- </center></body>';
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement