Stack Overflow Asked by Francy on September 19, 2020
I have create this example code:
// Create connection
$conn = Connection();
$result = $conn->query("SELECT * FROM `users` WHERE 1");
if ($result->num_rows > 0)
{
while($row = $result->fetch_assoc())
{
$name= $row["name"] ;
$id= $row["id"] ;
echo "<div class='media text-muted pt-3'>";
echo "<button class='mr-2 rounded btn-primary icon32 select_c'></button>";
echo "<p class='media-body pb-3 mb-0 small lh-125 border-bottom border-gray'>";
echo "<strong class='d-block text-gray-dark'>". $name ."</strong>";
echo $id;
echo "</p>";
echo "</div>";
}
I want to pass the id variable when the reference button is pressed using the post method. How can I do?
You can use value on the button then use ajax:
echo "<button class='mr-2 rounded btn-primary icon32 select_c' value='".$row["id"]."' onClick='ajaxpost(this)'></button>";
Now use Ajax:
js:
function ajaxpost(elem) {
var id= elem.value;
$.ajax({
url: "page.php",
type: "POST",
data: {id: id},
success: function (data) {
//what you want
}
});
}
Correct answer by Simone Rossaini on September 19, 2020
Get help from others!
Recent Questions
Recent Answers
© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP