No the problem isn't on ur 128 line. It is on 123. See following:
Old Line:
$get_archive = mysql_query("SELECT * FROM trendsletter_archive WHERE listID='$id' AND issueID='$issue');
Solved Line:
$get_archive = mysql_query("SELECT * FROM trendsletter_archive WHERE listID='$id' AND issueID='$issue'");
- Actually you missed a closing double quote at the end of query.
==========
Apprently line 129 has also a parse problem.
u should put single dot "." when u combine variables and quoted strings in Print statement.