I want to echo or display an "unselected(2nd) option" from the db.
please help!!!
1st(selected) option where it will display the value "ACCEPTED"
<a type="button" class="btn btn-default btn-round btn-md" href="#">
<?php echo $row['status'];?>
</a>
2nd(unselected) option where it will display the value "PENDING"
<a type="button" class="btn btn-default btn-round btn-md" href="#">
*HOW TO ECHO A VALUE IN HERE FROM THE DB?*
</a>
PHP CODE(this is mysql query)
$stmt = $db->prepare('SELECT * FROM blog_members WHERE memberID = :memberID') ;
$stmt->execute(array(':memberID' => $_GET['id']));
$row = $stmt->fetch();