表问题,分别读取多个条目

So I'm currently having an issue with doing If Statements so that it reads and lines that the duplicated separately.

The Table

So I have the current code:

<?php

            $query4 = $db->query( "SELECT * FROM administrators WHERE habbo = 'Fists'" );
                $num   = $db->num( $query4 );

                while( $array4 = $db->assoc( $query4 ) ) {

            ?>
<?php if ( $array4['position'] == '{D} - Drill Instructor Academy' ) { ?>
<strong> Level 1 Works </strong>
<?php if ( $array4['position'] == '{C} - USMC Core Values' ) { ?>
<strong> Level 2 Works </strong>
<?php } 
} ?>

However it seems to be reading from the same line as it outputs only Level 1 Works but not Level 2 Works.

Any Ideas for how to fix this?