As i am using PHP, So problem comes to me that how can i captilized the first Letter In this Code.
<?php foreach($aa as $row):?>
<?php echo ''.$row->username.'' ?>
<?php endforeach; ?>
Php has a ucfirst()
function it Make a string's first character uppercase.
<?php echo ''.ucfirst($row->username).'' ?>