<script>
$(document).ready(function () {
$.ajax({
url: '/admin_show_std_data',
method: 'GET',
success: function (data) {
console.log("namekj", data);
// Clear existing table data
$('#studentTable').DataTable({
data: data,
columns: [
{ data: 's_id' },
{ data: 'Last_Name' },
{ data: 'First_Name' },
{ data: 'Phone' },
{ data: 'Father_Name' },
{ data: 'Address' },
{
data: null,
render: function (data, type, row) {
return '<a href="/show_student_data_by_id/' + data.s_id + '">Edit</a>';
}
}
]
});
},
error: function (xhr, status, error) {
console.log('Error:', error);
}
});
});
</script>
.jpeg)
0 Comments