Get the solution ↓↓↓
Screenshot for incorrect output is attached. Actions links are not working.
]2I am using ajax to fetch data from mysql database in php and populating the table with returned data. HTML table is being populated with data but action links ( edit,view and delete) are not working.
index.php
<div id="employee_table">
<table class="table table-bordered text-center">
<thead class="bg-dark text-center text-white">
<tr>
<th>Employee Name</th>
<th>Address</th>
<th>Gender</th>
<th>Designation</th>
<th>Age</th>
<th>Photo</th>
<th>Edit</th>
<th>View</th>
<th>Delete</th>
</tr>
</thead>
<tbody id="tableBody">
<?php
$query = "SELECT * FROM tbl_employee ORDER BY name";
$result = mysqli_query($connect, $query);
while($row = mysqli_fetch_array($result))
{
?>
<tr>
<td><?php echo $row["name"]; ?></td>
<td><?php echo $row["address"]; ?></td>
<td><?php echo $row["gender"]; ?></td>
<td><?php echo $row["designation"]; ?></td>
<td><?php echo $row["age"]; ?></td>
<td><img src='<?php echo $row["image"]; ?>' width=80 height=30/></td>
<td><a id="<?php echo $row["id"]; ?>" class="btn btn-warning btn-sm edit_data"/><i class="fa fa-pencil-square" aria-hidden="true"></i></a></td>
<td><a id="<?php echo $row["id"]; ?>" class="btn btn-info btn-sm view_data"/><i class="fa fa-eye" aria-hidden="true"></i></a></td>
<td><a id="<?php echo $row["id"]; ?>" class="btn btn-danger btn-sm del_data"/><i class='fa fa-trash' aria-hidden='true'></i></a></td>
</tr>
<?php
}
?>
<tbody>
</table>
</div>
At this point of time, Edit,View and Delete links are working. but when inserting,updating or deleting data, then returned links are not working.
scripts.js
function showUsers(){
//alert("hello");
$.ajax({
url:"fetchusers.php",
method:"GET",
dataType:"json",
success:function(data){
$('#tableBody').html(data);
}
});
}
fetchusers.php
<?php
require 'db.php';
$output="";
$query = "SELECT * FROM tbl_employee order by name";
$result = mysqli_query($connect, $query);
//$row = mysqli_fetch_array($result);
while($row=mysqli_fetch_array($result)){
$output .=
"<tr><td>".
$row['name'].
"</td> <td>".
$row['address'].
"</td><td>".
$row['gender'].
"</td><td>".
$row['designation'].
"</td><td>".
$row['age'].
"</td><td><img src=".
$row['image'].
" width=80 height=30/></td><td><a id=".
$row['id'].
"class='btn btn-warning btn-sm edit_data'><i class='fa fa-pencil-square' aria-hidden='true'></i></a></td><td><a id=".
$row['id'].
"class='btn btn-info btn-sm view_data'><i class='fa fa-eye' aria-hidden='true'></i></a></td><td><a id=".
$row['id'].
"class='btn btn-danger btn-sm del_data'><i class='fa fa-trash' aria-hidden='true'></i></a></td></tr>";
}
if($output){
echo json_encode($output);
}
else{
echo "No data found.";
}
?>
At this point of time, Edit,View and Delete links are not working. No event is happening. data is being populated in html table.
$output is not correctly formatted, Please update it to the following.
$output .=
"<tr>".
"<td>".$row['name']."</td>".
"<td>".$row['address']."</td>".
"<td>".$row['gender']."</td>".
"<td>".$row['designation']."</td>".
"<td>".$row['age']."</td>".
"<td><img src='".$row['image']."' width=80 height=30/></td>".
"<td><a id='".$row['id']."' class='btn btn-warning btn-sm edit_data'><i class='fa fa-pencil-square' aria-hidden='true'></i></a></td>".
"<td><a id='".$row['id']."' class='btn btn-info btn-sm view_data'><i class='fa fa-eye' aria-hidden='true'></i></a></td>".
"<td><a id='".$row['id']."' class='btn btn-danger btn-sm del_data'><i class='fa fa-trash' aria-hidden='true'></i></a></td>".
"</tr>";
Instead of
echo json_encode($output);
replace with
echo $output;
Your $output variable is not an array but a string contains a html
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Find the answer in similar questions on our website.
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.
PHP (from the English Hypertext Preprocessor - hypertext preprocessor) is a scripting programming language for developing web applications. Supported by most hosting providers, it is one of the most popular tools for creating dynamic websites.
The PHP scripting language has gained wide popularity due to its processing speed, simplicity, cross-platform, functionality and distribution of source codes under its own license.
https://www.php.net/
DBMS is a database management system. It is designed to change, search, add and delete information in the database. There are many DBMSs designed for similar purposes with different features. One of the most popular is MySQL.
It is a software tool designed to work with relational SQL databases. It is easy to learn even for site owners who are not professional programmers or administrators. MySQL DBMS also allows you to export and import data, which is convenient when moving large amounts of information.
https://www.mysql.com/
HTML (English "hyper text markup language" - hypertext markup language) is a special markup language that is used to create sites on the Internet.
Browsers understand html perfectly and can interpret it in an understandable way. In general, any page on the site is html-code, which the browser translates into a user-friendly form. By the way, the code of any page is available to everyone.
https://www.w3.org/html/
Welcome to the Q&A site for web developers. Here you can ask a question about the problem you are facing and get answers from other experts. We have created a user-friendly interface so that you can quickly and free of charge ask a question about a web programming problem. We also invite other experts to join our community and help other members who ask questions. In addition, you can use our search for questions with a solution.
Ask about the real problem you are facing. Describe in detail what you are doing and what you want to achieve.
Our goal is to create a strong community in which everyone will support each other. If you find a question and know the answer to it, help others with your knowledge.