HI Sirs

need to pass Textbox Value to another page table.

I tried to used post and get in laravel but it doesnt resolve.

can anyone help me?

Thanks in advance

can you show us your code a bit please

here is my View 1 :

NATURE OF EVENTS</span></p>
        <div align="left">
          <table width="517" border="1">
              <tr class="alert-warning">
                <td width="275"><h5 align="left">
                  <input type="checkbox" name="choice" id="Meeting" />
                  Meeting</h5></td>
                <td width="226"><h5>
                  <input type="checkbox" name="choice" id="Exhibit" />
 Exhibit</h5></td>
              </tr>
              <tr class="alert-info">
                <td><h5 align="left">
                  <input type="checkbox" name="choice" id="Class" />
                  Class</h5></td>
                <td><h5 align="left">
                  <input type="checkbox" name="choice" id="Reception" />
                  Reception</h5></td>
              </tr>
              <tr class="bg-warning">
                <td><h5 align="left">
                  <input type="checkbox" name="choice" id="FilmViewing" />
                  Film Viewing</h5></td>
                <td><h5 align="left">
                  <input type="checkbox" name="choice" id="Rehearsals" />
                  Rehearsals</h5></td>
              </tr>
              <tr class="alert-info">
                <td><h5 align="left">
                  <input type="checkbox" name="choice" id="General Assembly" />
                  General Assembly</h5></td>
                <td><h5 align="left">
                  <input type="checkbox" name="choice" id="Talk/Symposium" />
                  Talk / Symposium</h5></td>
              </tr>
              <tr class="alert-warning">
                <td><h5>
                  <input type="checkbox" name="choice" id="PlayProduction/Concert/MusicalPerformance/" />
                  Play Production / Concert / Musical Performance</h5></td>
                <td><h5>
                  <input type="checkbox" name="choice" id="SeminarWorkshop" />
                  Seminar Workshop</h5></td>
              </tr>
              <tr height="2">
                <td>&nbsp;</td>
                <td>&nbsp;</td>
              </tr>
              <tr class="alert-info">
                <td><h5>
                  <input type="checkbox" name="choice" id="Others" />
                  Others (Please specify) </h5></td>
                <td><form id="form1" name="form1" method="post" action="">
                  <h5>
                    <label>
                      <input type="text" name="textfield" id="Other" />
                    </label>
                  </h5>
                </form></td>
              </tr>
              <tr class="alert-warning">
                <td height="35">Duration:
                <input type="text" name="datefrom" id="durationfromdate" /></td>
                <td>to:
                <input type="text" name="dateto" id="durationtodate" /></td>
              </tr>
              <tr class="alert-info">
                <td height="37">Time :
                <input type="text" name="timefrom" id="durationtimefrom" /></td>
                <td>Time :
                <input type="text" name="timeto" id="durationtimeto" /></td>
              </tr>
              <tr class="alert-info">
                <td height="27"><span class="text-primary">Total Number of Expected Participants </span>:</td>
                <td><input type="text" name="participants" id="numofparticipants" /></td>
              </tr>
              <tr class="alert-warning">
                <td>&nbsp;</td>
                <td><form id="form2" name="form2" method="get" action="/ateneo2">
                  <input name="button" type="submit"  id="button" value="Submit" />
                </form></td>
              </tr>
          </table>
        </div></td></tr>
</table>

Here is my View 2 (View 2 is the receiver of the values from textbox

         <table id="myTable">
  <thead>
  <tr>
<td>Nature Of Event</td>
 <td>Duration Date From</td>
<td>Duration Date To</td>
<td>Duration Time From</td>
<td>Duration Time To</td>
<td>Number of Participants</td>
</tr>
</thead> 
<tbody>
 <tr>
<td></td>
<td></td>
<td></td>
<td></td>
 <td></td>
  <td></td>
</tr>
 </tbody>
</table>

from View 1 i need to pass the textbox value to view2 on the table.

sample screen shot

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.