GeoffreyF67 Posted May 7, 2007 Share Posted May 7, 2007 I'm using the VCL with PHP and I'm having a problem. Specifically, I am trying to add items to a combobox like this: $Domains = GetDomainListForUser($UserID); foreach($Domains as $Domain) $this->ComboBox1->AddItem($Domain['Domain'],null,$Domain['ID']); My problem is that (assuming I had 2 domains) it ends up like this in the combo box: domain1.com blank line blank line domain2.com blank line blank line Any ideas what's wrong? G-Man Quote Link to comment https://forums.phpfreaks.com/topic/50404-using-vcl-with-php/ Share on other sites More sharing options...
Caesar Posted May 7, 2007 Share Posted May 7, 2007 Can you please show the code for your AddItem() function Quote Link to comment https://forums.phpfreaks.com/topic/50404-using-vcl-with-php/#findComment-247647 Share on other sites More sharing options...
GeoffreyF67 Posted May 8, 2007 Author Share Posted May 8, 2007 I added a call to the clear() function and that cleared things up (no pun intended). It seems that the data ends up getting cached somehow and ends up doing really weird things. I really wouldn't be able to provide the AddItem function since it's part of the VCL for PHP on sourceforge and it's a huge class with lots of inheritance. G-Man Quote Link to comment https://forums.phpfreaks.com/topic/50404-using-vcl-with-php/#findComment-247709 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.