Hello all!

Can anybody help me with this error?

warning: implode() [function.implode]: Invalid arguments passed in /home/hunter84/public_html/antrobusvillagehall/includes/theme.inc on line 1229.

Thank you
Rob

Comments

matcha213’s picture

What's the code snippet look like?

PHP's implode expects 2 arguments, a delimiter & the array to combine. So if I want a comma separated sentence out of an array:

$final_result = implode(",", $my_array);