<?php $result2 = db_getsub( array('campaigns_id' => $SYS_campaign) );
                            if (!is_null($result1)){ 
                                while ( $row = $result2->fetch_object() )
                                {
                            ?>
                    <div class="item">
                        <div style="text-align: left;">
                            <div class="choicetitle">
                                 <input type="radio" id="Radio1" checked="checked" title="" name="subtype"  value="<?php echo   $row->subid;  ?>" /><?php echo  $row->sub_name;  ?></div>
                            <div class="choicedesc descrip">
                                <?php echo $row->gavdescrep;  ?> </div>
                           <!-- <div class="choicelesmer">
                                Les mer
                            </div>-->
                            <div class="choicedesc1">
                                <?php echo $row->gavdescrep; ?> </div>
                        </div>
                        <span><?php 
                         $value=$row->price;
                        if($value != 0)
                        { 
                        echo $row->price; ?>,-
                       <?php }else { echo ""; } ?> </span>
                        <span class="bgcolor discprice">
                        <?php echo $row->pricediscount; ?>,-
                        </span>
                    </div>
                    <?php  } } ?>
I want to show default 1st radio button checked now its showing last button checked as it is coming dynamically any help???
 
     
     
     
     
    