i am trying to call some data from my wordpress db
its custom form in wordpress and i failed to get data from database and print it in my html part
my code is
<?php
global $wpdb;
$result = $wpdb->get_results( "SELECT * FROM wp_pen" );
if(!empty($result)) :
foreach((array)$result as $row) :
?>
<div class="list">
<p class="list-time">
<i class="fa fa-flag" aria-hidden="true"></i>
<?php echo $row['time']; ?>
</p>
<table class="ta1">
<tbody>
<tr>
<td width="10%" align="center">
<img src="images/avatar/avatar.png">
</td>
<td width="45%" align="center">
الاسم:<span><?php echo $row['user']; ?></span>
</td>
<td width="45%" align="center">
الدولة:<span><?php echo $row['con']; ?></span>
</td>
</tr>
</tbody>
</table>
<table class="ta2">
<tbody>
<tr align="center"><td><span><?php echo $row['comment']; ?></span></td></tr>
<tr>
<td align="center">
<br>
<a target="_blank" href="#" class="pin">Pin:<?php echo $row['pen']; ?></a>
</td>
</tr>
</tbody>
</table>
</div>
<?php
endforeach;
endif;
?>
i wanna to know how i get and echo data from db