PriteshP23 Posted September 9, 2013 Share Posted September 9, 2013 (edited) Hello, I would like to solve form problem. Here is my code: /************************** Step 1: Select Cell************************************/ if(isset($_POST['SmartPhone'])) $checked1=$_POST['SmartPhone']; $form->add_checkbox('SmartPhone','SmartPhone',$checked1); if(isset($_POST['Apple'])) $checked2=$_POST['Apple']; $form->add_checkbox('Apple','Apple',$checked2); /************************** Step 2: Select Model************************************/ if($_POST['SmartPhone']==false and $_POST['Apple']==false) { $this->add(new error('<span style="color:red">Select your cell..!!</span>')); $this->step1(); return; } if(isset($_POST['S4'])) $tech2=$_POST['S4']; $form->add_checkbox('S4','S4',$tech2); if(isset($_POST['iPhone 5'])) $tech3=$_POST['iPhone 5']; $form->add_checkbox('iPhone_5','iPhone 5',$tech3); if(isset($_POST['iPhone 5s'])) $tech1=$_POST['iPhone 5s']; $form->add_checkbox('iPhone_5s','iPhone 5s',$tech1); //In addition, i want to know how to put "Select All" button here // in order to SELECT ALL MODELs: S4, iPhone 5, iPhone_5s /************************** Step 3: File Generation************************************/ if($_POST['S4']==false and $_POST['iPhone_5']==false and $_POST['iPhone_5s']==false) { $this->add(new error('<span style="color:red">Please enter your model..!</span>')); $this->step2(); return; } $date = date('Y-m-d_H-i-s'); // Filename should be like this format "cell_datetime.xml" // For example: SmartPhone_20130910183023.xml or Apple_20130910183023.xml // Any idea how to create such filename?? Thanks for your time. Edited September 9, 2013 by PriteshP23 Quote Link to comment Share on other sites More sharing options...
PriteshP23 Posted September 9, 2013 Author Share Posted September 9, 2013 Problems: 1. IF we don't select Model; it gives message for both to select again. It should ask ONLY for model. 2. Input for Select All button 3. Input for Filename Quote Link to comment Share on other sites More sharing options...
priyankagound Posted September 11, 2013 Share Posted September 11, 2013 Here's an idea ........ <input class="checkbox-class" type="checkbox" value="1" /><input class="checkbox-class" type="checkbox" value="2" /> <input class="checkbox-class" type="checkbox" value="3" /> <input type="button" id="clickit" value="Check All" /> This will work to check all the values in the check box Quote Link to comment Share on other sites More sharing options...
PriteshP23 Posted September 11, 2013 Author Share Posted September 11, 2013 This will work to check all the values in the check box Thanks in advanced to give an example (if possible) of what you have said. I am sorry but i didn't get you. How it will work in my code ? I do not know how to apply your logic to get expected output. Quote Link to comment 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.