Hallo Forum.
Habe ein problem mit QueryStrings und deren verarbeitung mittels php:
<!-- Ursprungsdatei -->
<a href="javascript:fctChangeLoc('pages/allesaz.php?cmd=start')">
<img blablabla>
</a>
<!-- ////////////// -->
Habe eine Javascript funktion, die alles in ein iframe reinlädt:
<!-- Seiten in iframe laden -->
function fctChangeLoc(data){
document.getElementById('MAIN').src=data;
}
<!-- ////////////////////// -->
die verarbeitende datei allesaz.php:
<!-- Alles a bis z sortiert -->
<html>
<head>
<title>Alles von A bis Z</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
.SortDiv {
width:200px;
float:right;
}
</style>
</head>
<body bgcolor="#669999">
<?php
if(cmd=="start"){
echo "
<div class='SortDiv' align='right'>
<p align='right'>Sortieren nach ...</p>
<form action='allesaz.php' method='get'>
<select name='sort'>
<option value='titel'>Titel</option>
<option value='interpret'>Interpret</option>
<option value='verfgb'>Verfügbarem</option>
</select>
<input type='button' value='Go!'>
</form>
</div>
";
}
?>
</body>
</html>
<!-- Ende der Datei -->
Warum funktioniert das nicht? Liegt es am Browser oder ist da was am Code falsch? Bin ich zu blöd für PHP?