CodeIgniter Forums
unable to sumit my form - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=11)
+--- Thread: unable to sumit my form (/showthread.php?tid=62443)



unable to sumit my form - amlife - 07-15-2015

Hello everyone 

When I click on Submit, the page refresh, but it wouldn't redirect me to add_env controller. 

Here is my code

 
PHP Code:
        <?php 
         
echo $this->load->helper(array('form''url'));

 
        echo form_open('add_env'); ?>

           <div class="col-md-10"> 
            <label>Environment Name</label>
            <input type="text" class="form-control input-sm" style="width:50%">
          </div>
            <div class="col-md-2">
             <?php echo form_submit('submit''Submit');  ?>
            </div>
        <?php echo form_close()?>
           </div> 
I'm really not sure what is going on, any ideas?