Ive tried to incoporate the code you gave me but cant get it to work:
$sql = "SELECT job_id, contact_name, contact_telephone, date_posted, job_title, job_summary, person, package, location, salary FROM $table_name";
$result = @($sql,$connection) or die(mysql_error());
while ($row = mysql_fetch_array($result)) {
$job_id = $row['job_id'];
$contact_name = stripslashes($row['contact_name']);
$contact_phone = $row['contact_telephone'];
$date_posted = $row['date_posted'];
$job_title = stripslashes($row['job_title']);
$job_summary = stripslashes($row['job_summary']);
$short_summary = substr($job_summary,0,150);
$location = stripslashes($row['location']);
$salary = $row['salary'];
$date ="SELECT DATE_FORMAT(date_posted, '%M %D %Y') FROM $table_name where date_posted = '$date_posted'";