If/Else for goto pages
You created this if/else scenario for me, but now I have three choices instead of two.
<a href="PORC_Member_Round_<?php echo($rsBatchRecords->getColumnVal("sendto_second_round")?"2":"1"); ?>_Ballot.php?record_number=<?php echo ($rsBatchRecords->getColumnVal("record_number")); ?>"><?php echo($rsBatchRecords->getColumnVal("record_number")); ?></a>
The new choices are:
If the field “ebird_expedited” is true, then go to PORC_Member_ebird_Ballot.php
Else if “sendto_second_round” is true, then go to PORC_Member_Round_2_Ballot.php
Else go to PORC_Member_Round_1_Ballot.php
How should that be written?