Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
$resstart=mysql_query('select lat,lon from orte where plz='.$startortplz.' and staat='.$startortstaat.' and name='.$startortname);
$resziel=mysql_query('select lat,lon from orte where plz='.$zielortplz.' and staat='.$zielortstaat.' and name='.$zielortname);
$query = 'select lat,lon from orte where plz='.$startortplz.' and staat='.$startortstaat.' and name='.$startortname;
echo $query;
$resstart=mysql_query($query);
$query = 'select lat,lon from orte where plz='.$zielortplz.' and staat='.$zielortstaat.' and name='.$zielortname;
echo $query;
$resziel=mysql_query($query);
$query = "select lat,lon from orte where plz='$startortplz' and staat='$startortstaat' and name='$startortname'";
echo $query;
$resstart=mysql_query($query);
$query = "select lat,lon from orte where plz='$zielortplz' and staat='$zielortstaat' and name='$zielortname'";
echo $query;