ich habe eine function:
diese funktion wird jetzt hier wieder aufgerufen:
bei neu und sonder kommt nicht! obwohl was in der db steht...
PHP:
function showall($genre, $cat) {
$get = mysql_query("SELECT * from artikel where cat='$cat' && genre='$genre'");
while($array = mysql_fetch_array($get)) {
Print("<table...unwichtig
PHP:
switch($sec) {
case neu: //------> kommt nicht
showall("1,2,3,4","2");
break;
case sonder //------> kommt nicht
showall("1,2,3,4","3");
break;
case action: //------> kommt was
showall("1","1,2,3");
break;
Zuletzt bearbeitet: