dimanche 26 juin 2016

dynamic row insertion in table through php

I have 3 rows. Which are dynamic created. If we click on add more then all are three fields create dynamically. It is properly working.

But I want to insert these fields in to table through mysql query dynamically. I tried but it s not working. please help anyone to solve it. Thankyou.

    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
     <script type="text/javascript">
    var rowCount = 1;

     window.addMoreRows = function(frm) {
     rowCount++;
        var recRow = '<div id="rowCount' + rowCount + '"><div class="col-sm-3 text-left">College Name:</div><div class = "col-sm-9"><input type="text" name = "collegename[]" placeholder = "College Name" class = "form-control"/></div><div class = "col-sm-3 text-left" > Affiliated University: </div><div class = "col-sm-9" ><input type = "text" name = "univ[]" placeholder = "Affiliated University" class = "form-control" / > </div><div class = "col-sm-3 text-left" > Course Name: </div> <div class = "col-sm-9" ><input type = "text" name = "cname[]" placeholder = "Course Name" class = "form-control"/></div><div class = "col-sm-3 text-left" > Major & Subject: </div><div class = "col-sm-9"><input type = "text" name = "msub[]" placeholder = "Major Subject" class = "form-control"/></div><div class = "col-sm-3 text-left"> Final & Percentage: </div><div class = "col-sm-9"><input type = "text" name = "fper[]" placeholder = "Final Percentage" class = "form-control"/></div><a href = "javascript:void(0);" onclick = "removeRow (' + rowCount + ');" >Delete</a></div> ';
$('#addedRows').append(recRow);
 }
 window.removeRow = function(removeNum) {
  $('#rowCount'+removeNum).remove();
 }
  </script>
  <?php
   extract($_POST);
     if (isset($_POST['submit_val'])) {
    if ($_POST['dynfields']) { 
   foreach (array_keys($dynfields) as $key) {
  $txt = $dynfields[$key];
  $txt1 = $univ[$key];
  $txt2 = $cname[$key];
  $txt3 = $msub[$key];
 $txt4 = $fper[$key];
   $query = mysql_query("INSERT INTO dynamicfield VALUES ('','','$txt','$txt1','$txt2','$txt3','$txt4')");

  }
   }
     echo "<i><h2><strong>" . count($_POST['dynfields']) . "</strong> Hobbies Added</h2></i>";
  mysql_close();
   }
    ?>
       <form action="" method="post" id="addedRows">
         <h5 align="left"><u style="color:#449D44;">Other Studies</u>-<span style="font:normal 12px agency, arial; color:blue; text-decoration:underline; cursor:pointer;" onclick="addMoreRows(this.form);">Add More Other Studies</span></h5>
    <span  id="rowId">
     <div class="col-sm-3 text-left">College&nbsp;Name: </div>
      <div class="col-sm-9"><input type="text" name="dynfields[]" placeholder="College Name" class="form-control" /></div>

<div class="col-sm-3 text-left">Affiliated&nbsp;University: </div>
<div class="col-sm-9"><input type="text" name="univ[]" placeholder="Affiliated University" class="form-control" /></div>
<div class="col-sm-3 text-left">Course&nbsp;Name: </div>
<div class="col-sm-9"><input type="text" name="cname[]" placeholder="Course Name" class="form-control" /></div>
<div class="col-sm-3 text-left">Major&nbsp;Subject: </div>
<div class="col-sm-9"><input type="text" name="msub[]" placeholder="Major Subject" class="form-control" /></div>
<div class="col-sm-3 text-left">Final&nbsp;Percentage: </div>
<div class="col-sm-9"><input type="text" name="fper[]" placeholder="Final Percentage" class="form-control" /></div>
</span>
<input type="submit" name="submit_val" value="Submit" />

Aucun commentaire:

Enregistrer un commentaire