@deron
In CodeIgniter, you can hide a submit button using CSS by setting the "display" property to "none". Here's an example:
1
|
<input type="submit" class="hide-button" value="Submit"> |
1 2 3 |
.hide-button { display: none; } |
This will hide the submit button with the class name "hide-button" on your page.