get specific value of a array | PHP

The previous answer is wrong, to access the array elements, you need to get it by the key:

$location = $release_edu_qual[0]["location"];

In the above code, we’re getting the location of the array that’s first (zero based) in the initial array.

So to list all the array data you want from that initial array you could use something like:

<table>
    <thead>
        <tr>
            <th>Location</th>
            <th>Qualification</th>
            <th>Date</th>
        </tr>
    </thead>
    <tbody>
        <?php
        
        foreach( $release_edu_qual as $item ){
            echo '<tr>';
            echo    '<td>' . $item["location"]      . '</td>';
            echo    '<td>' . $item["qualification"] . '</td>';
            echo    '<td>' . $item["date"]          . '</td>';
            echo '</tr>';
        }
        
        ?>
    </tbody>
</table>