Ein freundliches Hallo in die Runde,
bin zum ersten Mal hier und nicht wirklich ein Profi in Sachen PHP. Vielleicht kann mir hier aber jemand bei der Lösung meines Problems helfen, wäre schön.
In dem folgenden Code gibt es mit Zeile 52 (separat aufgeführt) unter PHP 5 ein Problem und zwar erhalte ich folgende Fehlermeldung:
Fatal error: Cannot use string offset as an array in /kunden/*****_*****/markt/NCADM/CatDetails.php on line 52
In Zeie 52 steht folgendes:
Etwas weiter ausgeführt lautet der Code wie folgt:
Vielleicht kann mir hier ja jemand weiterhelfen. Wäre wie gesagt, echt toll.
Beste Grüße
Der Offroader
bin zum ersten Mal hier und nicht wirklich ein Profi in Sachen PHP. Vielleicht kann mir hier aber jemand bei der Lösung meines Problems helfen, wäre schön.
In dem folgenden Code gibt es mit Zeile 52 (separat aufgeführt) unter PHP 5 ein Problem und zwar erhalte ich folgende Fehlermeldung:
Fatal error: Cannot use string offset as an array in /kunden/*****_*****/markt/NCADM/CatDetails.php on line 52
In Zeie 52 steht folgendes:
PHP-Code:
if ($mods[$catlist->f("cat_id")]["storefront"] == 1){
$cattable .= " <img border=\"0\" src=\"Themes/DeepWater/custtemplate.gif\">";
}
PHP-Code:
$catlist = new clsDBDBNetConnect();
$catlist->query("select * from categories where sub_cat_id=0");
while($catlist->next_record()) {
$custom_template[0] = "";
$custom_field = "";
$custom_pricing = "";
$thisgroups = "";
$bgcolor = "#54B81A";
if ($_GET["cat"] == $catlist->f("cat_id"))
$bgcolor = "#FFFF66";
$cattable .= " <td width=\"225\" bgcolor=\"$bgcolor\">";
$cattable .= "<font size=\"1\">" . $catlist->f("name") . "</font>";
if ($mods[$catlist->f("cat_id")]["storefront"] == 1){
$cattable .= " <img border=\"0\" src=\"Themes/DeepWater/custtemplate.gif\">";
}
if ($mods[$catlist->f("cat_id")]["template"] == 1){
$cattable .= " <img border=\"0\" src=\"Themes/DeepWater/custtemplate.gif\">";
$custom_template[0] = 1;
}
else {
$custom_template[0] = 0;
}
if ($mods[$catlist->f("cat_id")]["field"] == 1){
$cattable .= " <img border=\"0\" src=\"Themes/DeepWater/custfield.gif\">";
$custom_field = 1;
}
if ($mods[$catlist->f("cat_id")]["pricing"] == 1){
$cattable .= " <img border=\"0\" src=\"Themes/DeepWater/custpricing.gif\">";
$custom_pricing = 1;
}
$cattable .= " <a href=\"CatDetails.php?cat=" . $catlist->f("cat_id") . "\" border=\"0\">
<img border=\"0\" src=\"Themes/DeepWater/edit.gif\"></a></td>\n <td width=\"125\" bgcolor=\"$bgcolor\">";
if (isset($groups[$catlist->f("cat_id")])){
$cattable .= "<font size=\"1\">" . $groups[$catlist->f("cat_id")] . "</font>";
$thisgroups = "<font size=\"1\"><i>" . $groups[$catlist->f("cat_id")] . "</i></font>";
}
$cattable .= " </td></tr>";
Beste Grüße
Der Offroader
Kommentar