This data is fetched from CURL in php and after decode I got this result, could you help me to print it in a table form so that I will be able to show it in web page
    <?php
                $user_curl = curl_init();
                curl_setopt_array($user_curl, array(
                    CURLOPT_URL => "https://gorest.co.in/public-api/users",
                    CURLOPT_RETURNTRANSFER => true,
                    CURLOPT_ENCODING => "",
                    CURLOPT_MAXREDIRS => 10,
                    CURLOPT_TIMEOUT => 60,
                    CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
                    CURLOPT_CUSTOMREQUEST => "GET",
                    CURLOPT_POSTFIELDS => "",
                    CURLOPT_HTTPHEADER => array(
                        "cache-control: no-cache",
                        "content-type: application/json",
                    ),
                ));
                $user_curl_response = curl_exec($user_curl);
                $user_curl_err = curl_error($user_curl);
                if ($user_curl_response) {
                $result = json_decode($user_curl_response,true);
                 echo "<pre>";
                 print_r($result);
                    
                } else {
                    echo 'No data found';
                }
Array
(
    [code] => 200
    [meta] => Array
        (
            [pagination] => Array
                (
                    [total] => 4018
                    [pages] => 402
                    [page] => 1
                    [limit] => 10
                )
        )
    [data] => Array
        (
            [0] => Array
                (
                    [id] => 4092
                    [name] => Dhanu Nambeesan
                    [email] => dhanu_nambeesan@rohan.org
                    [gender] => male
                    [status] => inactive
                )
            [1] => Array
                (
                    [id] => 4091
                    [name] => Sen. Ekadant Reddy
                    [email] => ekadant_reddy_sen@hegmann.org
                    [gender] => male
                    [status] => inactive
                )
            [2] => Array
                (
                    [id] => 4089
                    [name] => Narinder Acharya III
                    [email] => iii_narinder_acharya@franecki-hagenes.org
                    [gender] => female
                    [status] => inactive
                )
            [3] => Array
                (
                    [id] => 4088
                    [name] => Fr. Agastya Saini
                    [email] => agastya_saini_fr@quigley.net
                    [gender] => male
                    [status] => inactive
                )
            [4] => Array
                (
                    [id] => 4087
                    [name] => Bhuvaneshwar Dwivedi
                    [email] => bhuvaneshwar_dwivedi@mcclure.co
                    [gender] => male
                    [status] => inactive
                )
            [5] => Array
                (
                    [id] => 4086
                    [name] => Gov. Gorakhanatha Varma
                    [email] => gov_varma_gorakhanatha@monahan-runolfsdottir.name
                    [gender] => female
                    [status] => inactive
                )
            [6] => Array
                (
                    [id] => 4085
                    [name] => Kali Bhat MD
                    [email] => kali_md_bhat@mcdermott-waters.co
                    [gender] => female
                    [status] => inactive
                )
            [7] => Array
                (
                    [id] => 4083
                    [name] => Uttam Gupta
                    [email] => uttam_gupta@durgan.org
                    [gender] => female
                    [status] => active
                )
            [8] => Array
                (
                    [id] => 4082
                    [name] => Krishna Arora
                    [email] => krishna_arora@labadie.net
                    [gender] => male
                    [status] => active
                )
            [9] => Array
                (
                    [id] => 4081
                    [name] => Gov. Aruna Abbott
                    [email] => abbott_aruna_gov@mosciski.net
                    [gender] => female
                    [status] => active
                )
        )
)
 
     
     
    