Hallo zusammen,
ich rufe eine Funktion mit folgendem Code auf:
und bekomme diese Fehlermeldung:
Warning: Wrong parameter count for god_getcategories()
Die Funktion ist im Handbuch folgendermaßen definiert:
god_getcategories
Syntax: array god_getcategories(integer $ParentCategoryID)
Input: integer $ParentCategoryID
Output: array $categories
Side effects: none
This function retrieves a list of categories from the GOD interface for the specified $ParentCategoryID. The array returned is twodimensional:
in the first dimension it is accessed numerically whereas in the second dimension it is accessed using the symbolic names
described under god_getcategory.
Wie muß ich den Aufruf gestalten, damit die Fehlermeldung nicht mehr auftaucht?
Danke im voraus!
Gruß
langerxxx
ich rufe eine Funktion mit folgendem Code auf:
PHP-Code:
// Obtain list of available chat categories
$zaehler=0;
$categories=god_getcategories();
for ($i=0; $i<=count($categories); $i++)
Warning: Wrong parameter count for god_getcategories()
Die Funktion ist im Handbuch folgendermaßen definiert:
god_getcategories
Syntax: array god_getcategories(integer $ParentCategoryID)
Input: integer $ParentCategoryID
Output: array $categories
Side effects: none
This function retrieves a list of categories from the GOD interface for the specified $ParentCategoryID. The array returned is twodimensional:
in the first dimension it is accessed numerically whereas in the second dimension it is accessed using the symbolic names
described under god_getcategory.
Wie muß ich den Aufruf gestalten, damit die Fehlermeldung nicht mehr auftaucht?
Danke im voraus!
Gruß
langerxxx
Kommentar