Jump to content

Using VCL with PHP


GeoffreyF67

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.