NEWSROOM
Current News Stories
include //"/WWW/html/dbconf.php"; "/data/web/htdocs/cumuseum-archive/dbconf.php"; //determine which database we want to use $db = mysql_select_db("museum_website"); //Querying the DB for the all news stories ordered by postDate //This will make the most recent items show up first in the results list. $newsQuery = "SELECT newsID, newsTitle, monthName(newsDate) as newsMonthName, dayofmonth(newsDate) as newsDay, year(newsDate) as newsYear, newsLead from news order by postDate desc, newsID desc"; $newsResult = mysql_query($newsQuery); $num_news = mysql_num_rows($newsResult); if ($num_news == 0) { echo "There are no news items in our system at this time.
"; } else { //Here I'm saying that if more than 3 news stories were returned, then set //the $num_news variable to be 3. That way when we loop through the //newsResult, we will only get 3. if ($num_news > 3) { $num_news = 3; } echo "- ";
for ($i=0; $i<$num_news; $i++)
{
$row = mysql_fetch_array($newsResult);
echo "
- ".(stripslashes($row['newsTitle'])).", ".(stripslashes($row['newsLead']))."(".(stripslashes($row['newsMonthName']))." ".(stripslashes($row['newsDay'])).", ".(stripslashes($row['newsYear'])).")"; echo " "; } echo "
Press Information & Resources
For press kits for temporary exhibits, see the temporary exhibit pages in the Exhibits Section. General press information and resources for the University of Colorado Museum of Natural History can be found below.
About the Museum (PDF, 437 KB)
Museum Logo (color JPEG, 80 KB)
Museum Logo (color PSD, 875 KB, requires Adobe Photoshop)
Press Photos
Photo credit line should read ©University of Colorado Museum of Natural History unless otherwise noted.
All zip files contain a text file with suggested caption information; for more information on any of the photos, please contact the museum.
BioLounge Photos (8 high-res JPEGs, 31 MB zip file)
Paleontology Hall Photos (9 high-res JPEGs, 33 MB zip file)
Girls At the Museum Exploring Science Photos (8 high-res JPEGs, 43 MB zip file)
Behind the Scenes Photos (6 high-res JPEGs, 33 MB zip file)