Posts: 1,832
Location: Somewhere else entirely
|
$bandListSql is not in the scope of your function, so essentially empty. You either need to pass it in as a parameter to your function, or put the line
global $bandListSql;
as the first line of function code - this way it will refer to the $bandListSql variable outside your function.
__________________
UPDATE 0beron SET talkupation = talkupation + lots WHERE post = 'helpful';
Please login or register to view this content. Registration is FREE (aka MSN handwriting for forums)
|