Guest User

Untitled

a guest
Jan 20th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. function detailsmodal(id){
  2. var data = {"id":id};
  3. jQuery.ajax({
  4. method : "post",
  5. url : <?php echo BASEURL; ?>+'include/detailsmodal.php',
  6.  
  7. data : data,
  8. success : function(data){
  9. jQuery('body').append(data);
  10. jQuery('#details-modal').modal('toggle');
  11. },
  12. error : function(){
  13. alert("something went worng");
  14. }
  15. });
  16. }
  17.  
  18. <div class="col-mid-8">
  19. <div class="row">
  20. <h2 class="text-center">Featured Products</h2>
  21. <?php while($product = mysqli_fetch_assoc($featured)) : ?>
  22. <div class="col-md-3">
  23. <h4><?php echo $product['title']; ?></h4>
  24. <img src="<?php echo $product['image']; ?>" alt="<?php echo $product['title']; ?>" class="img-thumb"/>
  25. <p class="list-price text-danger">List Price <s>$<?php echo $product['list_price']; ?></s></p>
  26. <p class="price">Our Price: $<?php echo $product['price']; ?></p>
  27. <button type="button" class="btn btn-sm btn-success" onclick = "detailsmodal(<?php echo $product['id']; ?>)">Details
  28. </button>
  29. </div>
  30. <?php endwhile; ?>
  31. </div>
  32. </div>
Add Comment
Please, Sign In to add comment