0) { while($row = @mysql_fetch_array($result)) { define('SPECIAL_ID', $row['id']); $id = $row['id']; $posted = $row['posted']; $title = $row['title']; define('LINK_TITLE', $row['link_title']); $link_title = $row['link_title']; $text = $row['text']; $approved = $row['approved']; $image_description = $row['image_description']; $image_name = $row['image_name']; $image_size = $row['image_size']; $image_linked = $row['linked']; $image_hash = $row['hash']; if (!$approved && $_SESSION['admin_access_level'] == 1) { echo '
This special is not currently approved.
     
'; } echo '

' . $title . '

'; if ($approved) { if ($_SESSION['admin_access_level'] == 1) { echo '
Edit the Special Edit This Special

'; } } if ($image_name) { if ($image_linked) { echo '

' . $image_description . '
'; if ($image_description){ echo '' . $image_description . '
';} echo 'Click Image to Download Larger Version (' . format_file_size($image_size) . ')

'; } else { echo '

' . $image_description . ''; if ($image_description){ echo '
' . $image_description . '';} echo '

'; } } echo '
' . nl2br(str_replace('{D_WEB_ROOT}', D_WEB_ROOT, clean_bbcode($text))) . '
'; } } else { echo '

Currently, there are no special values at ' . D_SITE_NAME . '.'; } ?>