aktuelle.kurse/m133/Weiteres/Modul_Unterlagen_133_VO/01 Modulinhalte/01 WEB Architektur/03 Ue Landkarte/Loesung/Worldkarte.php
Harald G. Mueller a2dc35ce82 muh
2022-02-24 09:37:43 +01:00

78 lines
1.6 KiB
PHP

<?php
/*************************************************/
/** Author: Matthias von Orelli **/
/** Datum: Maerz 2008 **/
/** Version: 1.0 **/
/** Funktion: Selektive Auswahl **/
/** von Grafiken **/
/** Applikation: Anzeigen von Kontinent **/
/*************************************************/
?>
<html>
<body bgcolor=white
<title>PHP: Show marked Continents</title>
<hr><h1>Show Continent</h1></hr>
<input onClick="location.href='Worldkarte.php'" type="button" value="Home" >
<br>
<hr></hr>
<?PHP
// Initialisieren von Variablen
$HTML="";
$Kontinent = $_GET["Kontinent"];
// Ueberpruefung des ausgewaehlten Kontinents
if (isset($Kontinent))
{
echo ("Kontinent: ". $Kontinent);
// Dynamische Generierung der Detail Karte
$HTML="<form>";
switch ($Kontinent)
{
case "USA":
$HTML = $HTML . "<IMG SRC='./usa.gif'";
break;
case "EUROPE":
$HTML = $HTML . "<IMG SRC='./europe.gif'";
break;
case "JAPAN":
$HTML = $HTML . "<IMG SRC='./japan.gif'";
break;
default:
}
$HTML = $HTML . "</IMG>" . "</form>";
echo($HTML);
}
?>
<form action="" method="GET">
<IMG SRC="./world.gif"
USEMAP="#World" border=1 ALT="World Karte ist here">
<MAP NAME="World">
<AREA SHAPE="RECT" COORDS="38,49,157,127" HREF="./Worldkarte.php?Kontinent=USA">
<AREA SHAPE="RECT" COORDS="233,14,317,91" HREF="./Worldkarte.php?Kontinent=EUROPE">
<AREA SHAPE="RECT" COORDS="480,58,522,105" HREF="./Worldkarte.php?Kontinent=JAPAN">
</MAP>
</IMG>
</form>
</body>
</html>