Guten Abend
Die Fehlermeldung: "Parse error: syntax error, unexpected T_CASE in /home/joomla/public_html/spielwiese/components/com_tabcon/tabcon.php on line 53"
Das wäre die Zeile in der whilecontent funktion -> "case $row['id']...
Wieso denn das? Vielen Dank für eure Hilfe
mfg
Luca
PHP-Code:
function whilecontent() {
$sql = "SELECT * FROM ".$mosConfig_dbprefix."_content
WHERE catid='".$raw['category']."' AND sectionid='".$raw['section']."' LIMIT 0,".$raw['tabnr'];
$result = mysql_query($sql) OR die(mysql_error());
while($row = mysql_fetch_assoc($result)) {
case $row['id']: contentitem($row['id']);
break;
}
}
$id = $_GET['contentid'];
function contentitem($id) {
$sqlb = "SELECT * FROM jos_content WHERE id='".$id."'";
$resultb = mysql_query($sqlb) OR die(mysql_error());
$raow = mysql_fetch_assoc($resultb);
echo $raow['fulltext'];
}
switch($_GET['contentid']) {
whilecontent();
}
Das wäre die Zeile in der whilecontent funktion -> "case $row['id']...
Wieso denn das? Vielen Dank für eure Hilfe
mfg
Luca
Kommentar