|
|
include("connect.php");
$kat = $_REQUEST['kat'];
?>
Wählen Sie einen Beruf aus:
if ($kat){
$result = @mysql_fetch_array(mysql_query("SELECT * FROM berufe WHERE id=('$kat')"));
?>
Ihre Auswahl:
Beschreibung:
 
$orte = mysql_query("SELECT DISTINCT orte.ort FROM stellen AS stellen LEFT JOIN orte AS orte ON stellen.ort=orte.id WHERE stellen.beruf=('$kat') ORDER BY orte.ort");
$cnt = 0;
while ($orte2 = @mysql_fetch_array($orte)){ ?>
$cnt++;
}
if (! $cnt){echo "Keine Orte verf�gbar...";}
?>
}
?>
|
|
|