<?php
/* Easier to edit like this... 
 * index of array is the issue number.
 * To add more issues, just add another row and increment the index. */
$issues[1] = array( season => "Winter", year => "2000/01", theme => "Invented Languages");
$issues[2] = array( season => "Spring", year => "2001", theme => "Mapping Conversations");
$issues[3] = array( season => "Summer", year => "2001", theme => "Weather");
$issues[4] = array( season => "Fall", year => "2001", theme => "Animals");
$issues[5] = array( season => "Winter", year => "2001/02", theme => "Evil");
$issues[6] = array( season => "Spring", year => "2002", theme => "Horticulture");
$issues[7] = array( season => "Summer", year => "2002", theme => "Failure");
$issues[8] = array( season => "Fall", year => "2002", theme => "Pharmacopia");
$issues[9] = array( season => "Winter", year => "2002/03", theme => "Childhood");
$issues[10] = array( season => "Spring", year => "2003", theme => "Property");
$issues[11] = array( season => "Summer", year => "2003", theme => "Flight");
$issues[12] = array( season => "Fall/Winter", year =>"2003/04" , theme => "The Enemy");
$issues[13] = array( season => "Spring", year =>"2004" , theme => "Futures");
$issues[14] = array( season => "Summer", year =>"2004" , theme => "Doubles");
$issues[15] = array( season => "Fall", year =>"2004" , theme => "The Average");
$issues[16] = array( season => "Winter", year =>"2004/05" , theme => "The Sea");
$issues[17] = array( season => "Spring", year =>"2005" , theme => "Laughter");
$issues[18] = array( season => "Summer", year =>"2005" , theme => "Fictional States");
$issues[19] = array( season => "Fall", year =>"2005" , theme => "");
$issues[20] = array( season => "Winter", year =>"2005/06" , theme => "");
$issues[21] = array( season => "Spring", year =>"2006" , theme => "");
$issues[22] = array( season => "Summer", year =>"2006" , theme => "");
$issues[23] = array( season => "Fall", year =>"2006" , theme => "");
$issues[24] = array( season => "Winter", year =>"2006" , theme => "");
/*ADD*/	//Leave this line as is for editing mechanism (to be developed).
krsort($issues);	//Sorts array in reverse order by key [= issue number]
$currentIssue = 18;
$nextIssue = 19;
?>
