HEX
Server: Apache
System: Linux sg2plzcpnl509433.prod.sin2.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: qhl5pt3kkb1d (10888259)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: /home/qhl5pt3kkb1d/public_html/tstp-old/js/final-admits.js
$(document).ready(function () {

    $.ajax({

        type: "GET",

        url: "https://admin.thesmarttestprep.com/api/getfinaladmits",

        success: function (data) {

            var html = "";

            var successCount = 1;

            for(i=0; i<data.data.length; i++) {

                html += '<tr>';

                html += '<td scope="row">'+successCount+++'</th>';

                html += '<td scope="row">'+data.data[i].fname+' '+data.data[i].lname+'</th>';

                html += '<td scope="row">'+data.data[i].university+'</th>';

                html += '<td scope="row">'+data.data[i].country+'</th>';

                html += '<td scope="row">'+data.data[i].course+'</th>';

                html += '</tr>';

            }

            $("#FinalAdminTableBody").html(html);

        },

    });

});