It is displaying six posts, and I have 6 items in my database. The issue is that it is only displaying the first one, and repeating it five more times. This is my first time writing PHP so please don't get too advanced with terminology!
<?php
$pagetitle = "My Portfolio | Projects";
$header = $_SERVER['DOCUMENT_ROOT'];
$header .= "/includes/header.php";
include_once($header);
$sql="SELECT * FROM projects ORDER BY job DESC";
$sql_query=mysql_query($sql);
$post = mysql_fetch_array($sql_query);
$job = $post['job'];
$category = $post['category'];
$title = $post['title'];
$inside = $post['imageinside'];
$outside = $post['imageoutside'];
$body = $post['body'];
$description = $post['description'];
?>
<!-- Blog - Start -->
<?php do {?>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 blog blog_altered blog_left">
<div class="row">
<!-- Blog Image - Start -->
<div class=" col-lg-6 col-md-6 col-sm-10 col-xs-12 pic inviewport animated delay1" data-effect="fadeIn">
<img alt="blog-image" class="img-responsive" src="<?php echo "$outside" ?>">
</div>
<!-- Blog Image - End -->
<!-- Blog Info - Start -->
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 inviewport animated delay1" data-effect="fadeIn">
<div class="info">
<span class="date"><?php echo "$category" ?></span>
<h4 class="title"><a href="<?php echo "$job" ?>.php"><?php echo "$title" ?></a></h4>
<p><?php echo "$description" ?></p>
<a class="btn btn-primary text-on-primary" href="<?php echo "$job" ?>.php">Read More</a>
</div>
</div>
<!-- Blog Info - End -->
</div>
</div>
<?php } while ($post = mysql_fetch_array($sql_query)) ?>
<!-- Blog - End -->