/* we are going to select data fron content table where user id = $_session['id'] */
$sql_select=@new sql;
$sql_select->select('contacs','user_id',$_SESSION['id'].' '.$section);
$data=$sql_select->result_sl;
while ($row = $data->fetch_assoc()) {
echo $row['tell'];
}