The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.
Warning: implode(): Bad arguments.
The line of the error is simply this:
$requiredInfo = implode(", ", $info);
Where $info is an array of strings... $info shouldn't be an empty array as there's a seperate 'if' block to catch the case where the $info array has length > 1...
Any ideas...? Can't see what argument is wrong myself... The seperator is just a comma and the array is valid... :-S
EDIT: Don't worry... Discovered it wasn't working because I was using implode in a function, but didn't pass the $info variable to it... So $info was an empty array in that scope... Nevermind, all working now!
Warning: implode(): Bad arguments.
The line of the error is simply this:
$requiredInfo = implode(", ", $info);
Where $info is an array of strings... $info shouldn't be an empty array as there's a seperate 'if' block to catch the case where the $info array has length > 1...
Any ideas...? Can't see what argument is wrong myself... The seperator is just a comma and the array is valid... :-S
EDIT: Don't worry... Discovered it wasn't working because I was using implode in a function, but didn't pass the $info variable to it... So $info was an empty array in that scope... Nevermind, all working now!