Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

How to load data to modal

<!DOCTYPE html>
<html lang="en">

<head>

    <meta charset="utf-8">

    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    <meta name="viewport" content="width=device-width, initial-scale=1">

    <meta name="description" content="">

    <meta name="author" content="">

<title>Passing Value to Modal using jQuery</title>

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>

 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />

 <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>


</head>

<body>

<div class="container">

 <div style="height:50px;"></div>

 <div class="well">

 <center><h2>Passing Values to Modal using jQuery</h2></center>

 <div style="height:10px;"></div>

 <table width="100%" class="table table-striped table-bordered table-hover">

  <thead>

   <th>Firstname</th>

   <th>Lastname</th>

   <th>Address</th>

   <th>Action</th>

  </thead>

  <tbody>

  <?php

   $conn = mysqli_connect("localhost","root","","pass_model");

   $query=mysqli_query($conn,"select * from `user`");

   while($row=mysqli_fetch_array($query)){

    ?>

    <tr>

    <td><span id="firstname"><?php echo $row['firstname']; ?></span></td>

    <td><span id="lastname"><?php echo $row['lastname']; ?></span></td>

    <td><span id="address"><?php echo $row['address']; ?></span></td>

    <td><button type="button" class="btn btn-success edit" value="<?php echo $row['userid']; ?>"><span class="glyphicon glyphicon-edit"></span> Edit</button></td>

    </tr>

    <?php

   }

  ?>  

  </tbody>

 </table>

 </div>

 <?php include('modal.php');?>

 <script type="text/javascript">

  $(document).ready(function(){

   $(document).on('click', '.edit', function(){

    var first= $('#firstname').text();// get firstname

    var last= $('#lastname').text(); // get lastname

    var address= $('#address').text(); //get address
    $('#edit').modal('show');//load modal


    $('#efirstname').val(first);

    $('#elastname').val(last);

    $('#eaddress').val(address);

   });

  });

 </script>

</body>



</html>
Source by manin-tech.blogspot.com #
 
PREVIOUS NEXT
Tagged: #How #load #data #modal
ADD COMMENT
Topic
Name
4+3 =