> implode() expects an array as the second argument. You're passing a
string. In
> fact with the code you have above I don't see why you don't just tack the
> comma on the end in the first place:
>
>    if($image11_name != '') $sqlUpdate .= "image11='$image11_name', ";

The reason being the comma at the end of the SQL command will prevent the
command from working because SQL will expect another entry. However, your
comment about implode expecting an array helps out. Thanks.




Jef



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to