tqla Posted May 8, 2009 Share Posted May 8, 2009 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. Quote Link to comment https://forums.phpfreaks.com/topic/157412-solved-quickform-help-with-addgroup/ 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.