I don't see why it shouldn't work. Are you sure the field is called active?
In my opinion, you shouldn't use the parsing solution. Instead, send the data to your view and iterate it from there:
PHP Code:
<tbody>
<?php foreach($entries as $entry): ?>
<tr>
<td><?php echo $entry->id_pro ?></td>
<td><?php echo $entry->name ?></td>
<td><?php echo $entry->licensegen ?></td>
<td><?php echo $entry->version ?></td>
<td><?php echo $entry->expiration ?></td>
<td><?php echo $entry->options ?></td>
<td><?php echo $entry->username ?></td>
<?php if($entry->active == 1): ?>
<td>Active</td>
<?php else: ?>
<td>Disabled</td>
<?php endif; ?>
</tr>
<?php endforeach; ?>
</tbody>