Jump to content

Recommended Posts

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

Link to comment
https://forums.phpfreaks.com/topic/50404-using-vcl-with-php/
Share on other sites

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

Link to comment
https://forums.phpfreaks.com/topic/50404-using-vcl-with-php/#findComment-247709
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.