Search the Community
Showing results for tags 'sticky form'.
-
Ok, so posted on Ch. 13 Pursue earlier about making the login form sticky which I had great help getting resolved. Then when I get down the part where I need to make add_quote.php sticky, I have made the text area and source sticky but am having a really hard time trying to figure out how to get the checkbox to be sticky as well. I'm not even 100% sure if that's something that I'm even supposed to try to do for that part but it's an intriguing problem that I've run into and I can definitely see where knowing how to make a checkbox be sticky can be helpful in the future. I've searched all ov
- 3 replies
-
- sticky checkbox
- checkbox
-
(and 2 more)
Tagged with:
-
Hi all, I bought this book 2 weeks ago and have starting reading it a few days back. I am having a problem. I'm doing the review of the 2nd chapter but I modified the tasks a bit and I am in a quagmire with a function inside a function. The problem is that I want the "checked" to be contained inside the <input checked="checked"> but instead it keeps reverting back to before the entire html output. Relevant PHP // function to control which radio button will be checked depending on the value entered by user function ifstatement1 ($value,$id) { if ( ($value &l
-
Hi, first of all....this is a great book! Ok now to my question. I have created a HTML form in which there is a selection box generated by a php foreach loop: <?php //Array containing option values $options=array('Architecture','Interior Design','Dimensional Surveys','Party Wall Surveyors','In-house visualizations','CDM'); //Foreach loop to insert values into HTML echo'<select class="formInputText"name="selService[]"id="selService"multiple="multiple">'; foreach($options as $service){ echo"<option value=\"$service\">$service</option>\n"; } //close