Click here to Skip to main content
16,022,060 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,

I have this form in CodeIgniter view which not submitting. No idea what is wrong?

Please help.

What I have tried:

PHP
<?php if(isset($employees)) { ?>
                      <form method="POST" action="<?=site_url('insertincrement') ?>" >
                      <tbody>
                      <?php foreach($employees as $row) { ?>
                      <tr>
                          <input type="hidden" name="employeeid[]" value="<?=$row['employeeid']?>">
                          <td><?=$row['employeename']?></td>
                          <td><?=$row['fathername']?></td>
                          <td><?=$row['gender']?></td>
                          <td><?=$row['department']?></td>
                          <td><?=$row['designation']?></td>
                          <td>
                          <input type="number" name="increment[]" class="form-control">
                          <input type="hidden" name="updateddate[]" value="<?=date('Y-m-d'); ?>">
                          </td>
                          <td><input type="text" name="remarks[]" class="form-control"></td>
                      </tr>
                      <?php } ?>
                      <tr>
                          <td></td>
                          <td></td>
                          <td></td>
                          <td></td>
                          <td></td>
                          <td></td>
                          <td><button type="submit" class="btn btn-success btn-sm">Add Increments</button></td>
                      </tr>
                  </tbody>
                  </form>
                  <?php } ?>
Posted
Comments
Richard Deeming 2-Sep-24 3:27am    
What does "not submitting" mean? Is there a script error? A problem with the form's action? An error in the server code? Something else?
nyt1972 6-Sep-24 13:38pm    
It means when I click on submit button it do nothing, not go to controllers method.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900