My purpose for div is I want to create a search function and i want to have a arrowdown button. and if the user click that button there is a <div> display going down to list all the user name.
it seems like this on php
<div class="display_user">
<?php
foreach($records as $row)
{
echo $row->user_name.'<br>';
}
?>
</div>
I hope you get what i mean.