diff options
Diffstat (limited to 'user_guide/helpers')
-rw-r--r-- | user_guide/helpers/form_helper.html | 2 | ||||
-rw-r--r-- | user_guide/helpers/html_helper.html | 7 |
2 files changed, 7 insertions, 2 deletions
diff --git a/user_guide/helpers/form_helper.html b/user_guide/helpers/form_helper.html index 8504ac02f..ae3b07e53 100644 --- a/user_guide/helpers/form_helper.html +++ b/user_guide/helpers/form_helper.html @@ -350,7 +350,7 @@ fourth parameter:</p> echo form_button('name','content');<br /> <br /> // Would produce<br /> -<button name="name" type="submit">Content</button> +<button name="name" type="button">Content</button> </code> Or you can pass an associative array containing any data you wish your form to contain: diff --git a/user_guide/helpers/html_helper.html b/user_guide/helpers/html_helper.html index fd92f4dcb..e6a65277a 100644 --- a/user_guide/helpers/html_helper.html +++ b/user_guide/helpers/html_helper.html @@ -166,6 +166,11 @@ echo ul($list, $attributes);<br /> <code> $this->load->helper('html');<br /> <br /> +$attributes = array(<br /> + 'class' => 'boldlist',<br /> + 'id' => 'mylist'<br /> + );<br /> +<br /> $list = array(<br /> 'colors' => array(<br /> 'red',<br /> @@ -197,7 +202,7 @@ $list = array(<br /> );<br /> <br /> <br /> -echo ul($list);</code> +echo ul($list, $attributes);</code> <p>The above code will produce this:</p> |