
 |
 |
| |
Pork Congress
Media
| |
|
| |
if ($num_results_month > 0) {
for ($i=0; $i<$num_results_month; $i++) {
$row_month = mysql_fetch_assoc($result_month);
?>
| echo $row_month['month_press']; ?> |
| |
$query = "select id, headline, date_format(release_date,'%m/%d/%Y') release_date_formatted
from $mysql_table
where monthname(release_date) = '" . $row_month['month_press'] . "'
and (range = 'n'
or (range = 'y' and NOW() >= start_date and NOW() <= end_date))
order by release_date desc";
$result = mysql_query($query) or die("Can't execute query: " . mysql_error());
$num_results = mysql_num_rows($result);
for ($j=0; $j<$num_results; $j++) {
$row = mysql_fetch_assoc($result);
$url = 'mediadetail_2008.php?param=';
$param = encode_vars($row['id']);
$url .= $param;
?>
| |
| echo $row['release_date_formatted']; ?> |
 |
|
 |
echo $row['headline']; ?> |
}
mysql_free_result($result);
?>
| |
}
}
else {
?>
| There are no press releases |
}
?>
|
 |
 |
|
|
 |