-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSearchHistoryFinance.php
21 lines (21 loc) · 1.1 KB
/
SearchHistoryFinance.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php If (isset($SearchLang) == False){include 'LanguageEN.php';} if (isset($Year) == False){$Year=-1;$Playoff=False;}?>
<form action="Finance.php" method="get">
<table class="STHSTable">
<tr>
<td class="STHSW200 STHSPHPSearch_Field"><?php echo $SearchLang['Year'];?></td><td class="STHSW250">
<select name="Year" class="STHSSelect STHSW250">
<?php
echo "<option";if($Year == 0){echo " selected=\"selected\"";} echo " value=\"\">" . $SearchLang['ThisSeason'] . "</option>";
if (empty($HistoryYear) == false){while ($Row = $HistoryYear ->fetchArray()) {
echo "<option";if($Row['Year'] == $Year){echo " selected=\"selected\"";} echo " value=\"" . $Row['Year'] . "\">" . $Row['Year'] . "</option>";
}} ?>
</select></td>
</tr>
<tr>
<td class="STHSW200 STHSPHPSearch_Field"><?php echo $SearchLang['Playoff'];?></td><td class="STHSW250">
<input type="checkbox" name="Playoff"<?php if($Playoff == "True"){echo " checked";}?>></td>
</tr>
<tr>
<td colspan="2" class="STHSCenter"><input type="submit" class="SubmitButton" value="<?php echo $SearchLang['Submit'];?>"></td>
</tr>
</table></form>