On Tue, Mar 12, 2002 at 03:58:44PM -0500, Hong He wrote: > Yeah, I replaced the column name with 4, that error was gone, but a new > error message was generated, which is > > execute called with 1 bind variables when 2 are needed > > The $list->execute($group) is asking for two parameters inside the > parentless, which is weird. > > Any idea how this happens?
Your SQL contains two placeholders. In this case, you probably want to bind the same value to both of them. $list->execute($group, $group); Ronald
