Didn't work. Here's some more code.
<?
// Loop through the player recordset outputting a row of the table for each player with a link to the player page
while ( ! $fa_fixture_rs->EOF ) {
$fa_match_id = $fa_fixture_rs->Fields("match_id");
$fa_arse_score = $fa_fixture_rs->Fields("fix_arse_score");
$fa_opp = $fa_fixture_rs->Fields("fix_opp");
$fa_opp_score = $fa_fixture_rs->Fields("fix_opp_score");
$fa_motm = $fa_fixture_rs->Fields("fix_motm");
$fa_motm_id = $fa_fixture_rs->Fields("fix_motm_id");
$fa_fixture_date = date ( "M d", $fa_fixture_rs->Fields("match_date") );
?>
<tr>
<td bgcolor="cccccc" align="center"><font class="text_player"><?=($fa_fixture_date)?></font></td>
<td bgcolor="cccccc" align="center"><font class="text_player">
<?
if ( $fa_fixture_rs->Fields("match_site") == 'H' ) {
print "<b>Arsenal</b>";
} else {
print '<?=('.$fa_opp.')?>';
}
?></font></td>
<td bgcolor="003366" align="center"><font class="text_topic"><a href="http://www.arseratings.com/ar/results.php?match_id=<?=($fa_match_id)?>" class="text_white_link"><?=($fa_arse_score)?> - <?=($fa_opp_score)?></a></font></td>
<td bgcolor="cccccc" align="center"><font class="text_player"><?
if ( $fa_fixture_rs->Fields("match_site") == 'A' ) {
print "<b>Arsenal</b>";
} else {
print '<?=('.$fa_opp.')?>';
}
?></font></td>
</tr>
<?
$fa_fixture_rs->MoveNext();
}
?>
The pring <b>Arsenal</b> works, but the other doesn't