I am using php PDO for server connection. just like that
$stmt = $pdo->prepare('call naviSql( ?, ?, ? )');
$stmt->execute( array( $someone, $on_navi, $on_date ) );
while( $row = $stmt->fetch( ) ) {
echo '<a href="http://'.$_SERVER['HTTP_HOST'].'/anbu/home.php?topic='.$row['topic_name'].'" class="list-group-item list-group-item-action justify-content-between"></a>';
}
now after echoing out all the data, how i can remind first row values once again?