D
Deejoy
genau thx. wenn du ne frau wärst würd ich die jetzt knutschen
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.
<body onload="show_location(document.frm.plz_in)">
<html>
<head>
<script type="text/javascript">
<!--
function show_location(objInput){
if(!String(objInput.value).match(/^\d{5}$/)) {
objInput.form.loc_out.style.visibility="hidden";
}else{
window.dummie.location="plz.php?plz="+objInput.value;
}
}
function add_option(strText){
objList=document.frm.loc_out;
objList.options[objList.options.length]=new Option(strText);
objList.style.visibility='visible';
}
//-->
</script>
</head>
<body>
<iframe name="dummie">
</iframe>
<form method="post" action="index.htm" name="frm" id="frm">
<input type="text" name="plz_in" maxlength="5" onkeyup="show_location(this)">
<select name="loc_out" size="5">
</select>
</form>
</body>
</html>
<script type="text/javascript">
<!--
function get_location(){
if(typeof parent.dummie=='object' && typeof parent.document.frm.loc_out=='object'){
objList = parent.document.frm.loc_out;
objList.options.length=0;
<?php
$sql = "select ort from plz where plz='".$_GET['plz'];
$result= mysql_query($sql) OR die(mysql_error());
$row = mysql_fetch_array($result);
$location="unbekannt";
//Wurde Parameter übergeben?
if(isset($_GET['plz'])){
include_once("zugangsdaten.php");
$sql = "select ort from ort where plz='".$_GET['plz']." LIMIT 2";
$result= mysql_query($sql) OR die(mysql_error());
while($row = mysql_fetch_array($result)){
echo "\n\t parent.add_option('".$row['ort']."');";
}
}
?>
}
}
if(self==top){
document.location='index.htm';
}else{
get_location();
}
//-->
</script>
id int(11) plz int(5) ort varchar(50)
"select ort from plz where plz='".$_GET['plz'];
"select ort from ort where plz='".$_GET['plz']
<script type="text/javascript">
<!--
function get_location(){
if(typeof parent.dummie=='object' && typeof parent.document.frm.loc_out=='object'){
objList = parent.document.frm.loc_out;
objList.options.length=0;
<?php
$location="unbekannt";
//Wurde Parameter übergeben?
if(isset($_GET['plz'])){
include_once("../zugangsdaten.php");
$sql = "select ort from ort where plz='".$_GET['plz']." LIMIT 2";
$result= mysql_query($sql) OR die(mysql_error());
while($row = mysql_fetch_array($result)){
echo "\n\t parent.add_option('".$row['ort']."');";
}
}
?>
}
}
if(self==top){
document.location='index.htm';
}else{
get_location();
}
//-->
</script>
$sql = "select ort from ort where plz='".$_GET['plz']." LIMIT 2";