</div>
		<div class="row">
			<div class="span3">				
 					<div class="thumbnail-header">
						<span class="cat_header">Updates</span> 
					</div>
					<table class="table table-striped" cellpadding="10" cellspacing="0">
						<tr>
							<td>Posts</td><td><?php 
echo countPost($uid);
?>
</td>
						</tr>
						<tr>
							<td>View</td><td><?php 
echo countView($uid);
?>
</td>
						</tr>
						<tr>
							<td>Followers</td><td><?php 
echo countFollower($uid);
?>
</td>
						</tr>
						<tr>
							<td>Following</td><td><?php 
echo countFollowing($uid);
?>
</td>
						</tr>
                useHTML: true
            },
            plotOptions: {
                line: {
                    dataLabels:{
                        enabled:true
                    },
                    enableMouseTracking:false
                }
            },
            series: [{
                name: 'Views',
                data: [
                    <?php 
for ($x = 0; $x < count($data_array); $x++) {
    echo countView($data_array[$x], 30, $db);
    echo ",";
}
?>
                ]
            }]

        });
    });

</script>


<script>
    $(function () {
        $('#test2').highcharts({