Nun, da gibt es wohl auf die Schnelle keine Antwort, da es eine umfangreichere Sache ist. Im Anschluss ein Quelltext aus einer Seite, welche ich mal für eine PLZ-Suche erstellt habe (das Script für die Mindestangabe von Zahlen muss natürlich entfernt werden). Hierfür ist eine Ergebnisseite erforderlich, auf die Du mittels Formular als Aktion linken musst. Aber: Etwas Kenntnisse über Dynamic Content und den Objekten der Palette »Dynamischer Inhalt« sind hierfür notwendig.
In der GoLive-Hilfe unter »Verwenden des Moduls "Dynamischer Inhalt"« sind wertvolle Beispiele sowie hier im Forum die sehr hilfreiche PDF-Datei auf der Seite:
http://www.hilfdirselbst.ch/...amp;idgtx_texts_1=76 von Miro Dietiker und Urs Gamper.
Gruss
Ollie
<?php require_once("../config/include/utils.runtime6.php") ?>
<?php require_once("../config/include/mysql.runtime6.php") ?>
<html>
<head>
<title></title>
<script type="text/javascript">
<!--
function chkabfrage_plz()
{
if(document.abfrage_plz.PLZ.value == "") {
alert("Bitte mind. 4 Stellen der PLZ eingeben!");
document.abfrage_plz.PLZ.focus();
return false;
}
var chkZ = 1;
for(i=0;i<document.abfrage_plz.PLZ.value.length;++i)
if(document.abfrage_plz.PLZ.value.charAt(i) < "0"
|| document.abfrage_plz.PLZ.value.charAt(i) > "9")
chkZ = -1;
if(chkZ == -1) {
alert("PLZ ist keine Zahl!");
document.abfrage_plz.PLZ.focus();
return false;
}
if(document.abfrage_plz.PLZ.value.length < 4) {
alert("Bitte mind. 4 Stellen der PLZ eingeben!");
document.abfrage_plz.PLZ.focus();
return false;
}
}
//-->
</script>
<?php // GoLive Content Source
$Unsere_Mitglieder_Taxi = WrapMySQLDatabaseResults("vvrp", "select * from Unsere_Mitglieder_Taxi_Mietwagen where PLZ like '%" . @$GLOBALS["PLZ"] . "%'", "block=1","Unsere_Mitglieder_Taxi");
?>
<link href="../Style_VVRP.css" rel="stylesheet" media="screen">
</head>
<body text="#000000">
<table width="709" border="0" cellspacing="0" cellpadding="0" cool gridx="10" gridy="10" height="485" showgridx showgridy>
<tr height="484">
<td width="708" height="484" valign="top" align="left" xpos="0">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="16"><img src="../clearpixel.gif" alt="" height="13" width="16" border="0"></td>
<td width="440"></td>
</tr>
<tr>
<td width="16"></td>
<td width="440">
<table width="425" border="0" cellspacing="0" cellpadding="4">
<tr>
<td><br>
<font size="2" color="#555555" face="Verdana,Tahoma,Arial,Helvetica,Geneva,Swiss,SunSans-Regular">Um Mitglieder nach PLZ zu suchen, geben Sie bitte mindestens 4 Ziffern ein:</font></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="16"></td>
<td width="440"><font size="2" color="#555555" face="Verdana,Tahoma,Arial,Helvetica,Geneva,Swiss,SunSans-Regular">
<form name="abfrage_plz" action="hauptfenster_t_m_ergebnis.php" method="post" onsubmit="return chkabfrage_plz()">
<table width="424" border="0" cellspacing="0" cellpadding="4">
<tr>
<td width="60"><font size="2" color="#555555" face="Verdana,Tahoma,Arial,Swiss"><b>PLZ:</b></font></td>
<td width="260"><input type="text" size="40" name="PLZ" maxlength="5"></td>
<td width="80"><input type="submit" value="suchen"></td>
</tr>
<tr>
<td width="60"></td>
<td width="260"></td>
<td width="80"></td>
</tr>
</table>
</form>
</font></td>
</tr>
<tr>
<td width="16"></td>
<td width="440"></td>
</tr>
</table>
</td>
<td width="1" height="484"><spacer type="block" width="1" height="484"></td>
</tr>
<tr height="1" cntrlrow>
<td width="708" height="1"><spacer type="block" width="708" height="1"></td>
<td width="1" height="1"></td>
</tr>
</table>
</body>
</html>