$DATE = date("H:m:s", strtotime($row['date']));
<style>
#parent{
position:relative;
background:black;
height:200px;
width:100%;
}
#child{
position:absolute;
bottom:0;
background:red;
height:100%;
width:100px;
}
</style>
<div id="parent">
<div id="child">Содержимое</div>
</div>