Link to home
Start Free TrialLog in
Avatar of Roobi R
Roobi R

asked on

PHP form submit not returning all values from the form

I have a form with n numbers of data.When i click submits on request ($_REQUEST) i could receive only 1st 50 data?The form field inputs are in array.What could be the issue?Can anyone help me to resolve the issue?

Sample code:

<div class="DTE_Field_Type_text DTE_Field_Name_Branch_name Phone">
   <label data-dte-e="label" class="col-sm-2 control-label">
      Branch Name:
      <div data-dte-e="msg-label" class="DTE_Label_Info"></div>
   </label>
   <div data-dte-e="input" class="col-sm-4">
      <input value="Leeds Vicar Ln" name="branch_name_48[]" placeholder="Branch Name" id="DTE_Field_branch_name_48" class="form-control-occupancy" required="" type="text">
      <div style="display: none;" data-dte-e="msg-error" class="help-block"></div>
      <div data-dte-e="msg-message" class="help-block"></div>
      <div data-dte-e="msg-info" class="help-block"></div>
   </div>
   <label data-dte-e="label" class="col-sm-2 control-label">
      Branch Address:
      <div data-dte-e="msg-label" class="DTE_Label_Info"></div>
   </label>
   <div data-dte-e="input" class="col-sm-4">
      <textarea name="branch_addr_48[]" placeholder="Branch Address" id="DTE_Field_hq_addr_48" class="form-control-occupancy"></textarea>
      <div style="display: none;" data-dte-e="msg-error" class="help-block"></div>
      <div data-dte-e="msg-message" class="help-block"></div>
      <div data-dte-e="msg-info" class="help-block"></div>
   </div>
</div>

<input class="btn btn-primary" id="savenext" name="save" value="Save" type="submit">

Branch Name: Branch Address:

The form has more fields.i.e branch_addr_100 and so on.From this form i could recieve only branch_addr_49. How could i retrieve all 100 records.?
Avatar of Ray Paseur
Ray Paseur
Flag of United States of America image

User generated image
ASKER CERTIFIED SOLUTION
Avatar of Ray Paseur
Ray Paseur
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Roobi R
Roobi R

ASKER

Hi, I have a form with multiple text boxes eg : branch name ,address etc..Within a form i have a phone number field i.e 4 text boxes with a option to add more phone fields. When i hide the phone fields i could able to retrieve all the 100 records
What is the URL of your test web page?  We need to see it in action, thanks.