Jump to content

[SOLVED] QuickForm - Help with addGroup


tqla

Recommended Posts

Hello. Wondering if someone can help me with this QuickForm stuff.

 

I am using this to get the phonoe number into my database but all that shows up there is the word "Array".

$areacode= &HTML_QuickForm::createElement('text', '', null, array('size' => 3, 'maxlength' => 3));
$exchange= &HTML_QuickForm::createElement('text', '', null, array('size' => 3, 'maxlength' => 3));
$last4= &HTML_QuickForm::createElement('text', '', null, array('size' => 4, 'maxlength' => 4));
$form->addGroup(array($areacode, $exchange, $last4), 'Phone', 'Phone:', '-'); 

 

I've also tried this with the same result:

$phone[] = &HTML_QuickForm::createElement('text','areacode',null,array('size' => 3, 'maxlength' => 3));
$phone[] = &HTML_QuickForm::createElement('text','exchange',null,array('size' => 3, 'maxlength' => 3));
$phone[] = &HTML_QuickForm::createElement('text','last4',null,array('size' => 4, 'maxlength' => 4));
$form->addGroup($phone,'Phone','Phone: ','-');	

 

I'd appreciated if someone with QuickForm knowledge would help me out. Thanks.

Link to comment
https://forums.phpfreaks.com/topic/157412-solved-quickform-help-with-addgroup/
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.