Click here to Skip to main content
15,920,005 members
Home / Discussions / Linux, Apache, MySQL, PHP
   

Linux, Apache, MySQL, PHP

 
Questionwebsite page shown broken however it is not actually Pin
random423-Feb-09 22:35
random423-Feb-09 22:35 
AnswerRe: website page shown broken however it is not actually Pin
EliottA24-Feb-09 2:11
EliottA24-Feb-09 2:11 
GeneralRe: website page shown broken however it is not actually Pin
random411-Mar-09 19:41
random411-Mar-09 19:41 
GeneralRe: website page shown broken however it is not actually Pin
EliottA12-Mar-09 0:56
EliottA12-Mar-09 0:56 
GeneralRe: website page shown broken however it is not actually Pin
random412-Mar-09 1:04
random412-Mar-09 1:04 
Questionyahoo messenger Pin
venu65620-Feb-09 23:35
venu65620-Feb-09 23:35 
Questionmultiple checkbox Pin
rose19619-Feb-09 1:01
rose19619-Feb-09 1:01 
AnswerRe: multiple checkbox Pin
jceresini8-Mar-09 18:13
jceresini8-Mar-09 18:13 
If you are just looking to create multiple checkboxes you can use the same command to make 1 check box over and over until you have the number of checkboxes you want:
$ispublic = new Zend_Form_Element_Checkbox('chkbox1');
$ispublic->setLabel('Check box label')
         ->setAttrib('id','chkbox1');


I have a feeling though, that you are looking to put radio buttons on your form. Here is an example of creating radio buttons:

$staffname = array('Jim', 'John');
$staff = new Zend_Form_Element_Radio('staff');
$staff->setRequired(true)  // field required
->setValue('R') // first radio button selected
->setMultiOptions($staffname);  // add array of values / labels for radio group
$form->addElement($staff);


More information can be found here: http://www.davidkelly.ie/blog/2008/06/18/zend_form-radio-buttons/[^]

Joe Ceresini
Network Engineer
jceresini@hostmysite.com
Hostmysite.com
QuestionURL rewriting Pin
random418-Feb-09 21:40
random418-Feb-09 21:40 
AnswerRe: URL rewriting Pin
Perspx18-Feb-09 22:00
Perspx18-Feb-09 22:00 
GeneralRe: URL rewriting Pin
random423-Feb-09 22:33
random423-Feb-09 22:33 
Questionhow to pass onclick parameter in zend framework Pin
rose19617-Feb-09 21:33
rose19617-Feb-09 21:33 
QuestionAJAX & PHP Pin
Bryant May14-Feb-09 8:18
Bryant May14-Feb-09 8:18 
AnswerRe: AJAX & PHP Pin
it_8x14-Feb-09 9:29
it_8x14-Feb-09 9:29 
GeneralRe: AJAX & PHP Pin
Bryant May15-Feb-09 4:17
Bryant May15-Feb-09 4:17 
GeneralRe: AJAX & PHP Pin
Perspx15-Feb-09 4:54
Perspx15-Feb-09 4:54 
GeneralRe: AJAX & PHP Pin
Bryant May16-Feb-09 1:49
Bryant May16-Feb-09 1:49 
AnswerRe: AJAX & PHP Pin
Ioannis_o519-Feb-09 6:08
Ioannis_o519-Feb-09 6:08 
GeneralRe: AJAX & PHP Pin
Bryant May19-Feb-09 6:22
Bryant May19-Feb-09 6:22 
GeneralRe: AJAX & PHP Pin
Ioannis_o519-Feb-09 6:58
Ioannis_o519-Feb-09 6:58 
GeneralRe: AJAX & PHP Pin
Bryant May19-Feb-09 7:24
Bryant May19-Feb-09 7:24 
GeneralRe: AJAX & PHP Pin
Ioannis_o519-Feb-09 7:58
Ioannis_o519-Feb-09 7:58 
GeneralRe: AJAX & PHP Pin
Bryant May19-Feb-09 8:49
Bryant May19-Feb-09 8:49 
GeneralRe: AJAX & PHP Pin
Ioannis_o519-Feb-09 9:22
Ioannis_o519-Feb-09 9:22 
GeneralRe: AJAX & PHP Pin
Bryant May19-Feb-09 10:52
Bryant May19-Feb-09 10:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.