I am perfoming PHP CRUD operations on a table. When i click the edit button rather then taking it to a new page i want to show the values in a modal. I want the value's to be displayed in the modal's form. I have created a modal but i am unable to think of an logic to pass the values of the row in which the edit button was clicked. Any help would be highly appreciated.
Table:
<table class="table datatable-basic table-bordered table-hover">
<thead>
<tr class='active'>
<th><b>S.No.</b></th>
<th><b>Name</b></th>
<th><b>Mobile Number</b></th>
<th><b>Password</b></th>
<th><b>Actions</b></th>
</tr>
</thead>
<tbody>
<?php
$sql="SELECT * from users ORDER BY name ASC" ;
$c = 1;
$results = $result->query($sql);
while($row = $results->fetch_assoc())
{
echo '<tr style="font-weight:normal;">';
echo "<td>$c</td>";
echo "<td>{$row['name']}</td>";
echo "<td>{$row['username']}</td>";
echo "<td>{$row['pass']}</td>";
echo "<td class='text-center'><ul class='icons-list'><a href='#' style='color:#000;'><i class='icon-pencil5' data-toggle='modal' data-target='#modal_edit'
data-popup='tooltip' title='Edit' data-container='body'></i></a>
<a href='delete.php?teacherid={$row['username']}' style='color:#000;'><i class='icon-cross2' data-popup='tooltip' title='Delete'
data-container='body'></i></a></ul></td>";
echo '</tr>';
++$c;
}
?>
</tbody>
</table>
My Modal is like this:-
<div id="modal_edit" class="modal fade" style="font-weight: normal;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h5 class="modal-title">Add Teacher</h5>
</div>
<form action="" method="POST">
<div class="modal-body">
<div class="form-group">
<div class="row">
<div class="col-sm-6">
<label>Full Name</label>
<input type="text" name="fullname" class="form-control" required>
</div>
<div class="col-sm-6">
<label>Mobile Number</label>
<input type="text" name="mobno" class="form-control" required>
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<div class="col-sm-6">
<label>Password</label>
<input type="password" name="password" class="form-control" required>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-link" data-dismiss="modal">Close</button>
<button type="submit" name="submit" class="btn btn-primary">Submit</button>
</div>
</div>
</form>
</div>
</div>