Simple question; but I'm puzzled. Object is to display a given newsletter (january_11.pdf)
whose month and year is specified by the user in a form from drop down combo boxes.
$year = $_POST[ 'year' ] ;
$month = $_POST[ 'month' ] ;
$issue = $month + $year ;
Once the specific $issue has been defined, how can the pdf be automatically displayed
without clicking on another link? This should be obvious to me; but I just don't see it.