OK, as I am doing for 2 teams, here is the other serialize
PHP Code:
a:5:{i:0;s:0:"";i:1;s:4:"5 25";i:2;s:2:"15";i:3;s:2:"55";i:4;s:0:"";}
templates that I use
Main template
PHP Code:
<form name="getcup">
<table cellpadding="6" cellspacing="0" border="0" width="100%" class="tborder" align="center"> <tr> <td class="tfoot">
<select name="cupid" onChange="MM_jumpMenu('parent',this,0)">
<option value="#" selected>View other schedules</option>
$cuplist
</select>
</td><td width="100%" class="tfoot"><strong><span style="float:right;">»» <a href="international/index.php?opt=schedule&divid=$thedivision&season=$seasonid">Full Standings</a> </span>$mycupname</strong></td></tr></table></form>
<strong><font color="red">Under Construction. Any predictions will be deleted.</font></strong>
<table align="center" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" width="100%">
<tr><td align="right" colspan="10" class="alt1"><span class="smallfont"><if condition="$prediction"><a href="#">View predictions for $t1 vs $t2</a> | </if><a href="#">View all predictions</a> | <a href="#">View your predictions</a></span> </td></tr>
<tr>
<td class="thead">Date</td>
<td align="center" class="thead">Time</td>
<td class="thead">Location</td>
<td class="thead">Team</td>
<td width="18" class="thead">Flag</td>
<td colspan="2" align="center" class="thead">Score</td>
<td width="18" class="thead">Flag</td>
<td class="thead">Team</td>
<td class="thead">Group</td>
</tr>
$currentsched$predict
</table>
Soccer_predict template ($predict)
PHP Code:
<form name="prediction" method="post" action"interschedule.php">
<input type="hidden" name="seasonid" value="$seasonid">
<input type="hidden" name="divid" value="$thedivision">
<input type="hidden" name="teamid1" value="$tid1">
<input type="hidden" name="teamid2" value="$tid2">
<input type="hidden" name="gameid" value="$gameid">
<input type="hidden" name="do" value="dopredict">
<tr>
<td><span class="smallfont">$d</span></td>
<td align="center"><span class="smallfont">$t</span></td>
<td><span class="smallfont">$l</span></td>
<td><span class="smallfont"><a href="international/index.php?opt=viewteam&id=$tid1&sid=$seasonid"><strong>$t1</strong></a></span></td>
<td width="18"><img src="international/images/smallflags/$t1.gif"></td>
<td align="center" class="alt1"><input name="predscore1" value="$predscore1" type="text" size="1" maxlength="2">
</td> <td align="center" class="alt1"><input name="predscore2" type="text" size="1" value="$predscore2" maxlength="2">
</td>
<td width="18"><img src="international/images/smallflags/$t2.gif"></td>
<td><span class="smallfont"><a href="international/index.php?opt=viewteam&id=$tid2&sid=$seasonid"><strong>$t2</strong></a></span></td>
<td><span class="smallfont"><a title="$cupname" href="interstandings.php?g=$gamegroup&cupid=$thecupid">$gamegroup</a></span></td>
</tr>
<tr><td align="center" colspan="10"><span class="smallfont">Predictions may be changed anytime, up to 30 seconds before the game start. <br />We use the game location timezone for prediction cutoff time. <br /><strong><font color="#990000">Optional:</font></strong> You may also predict the scorer's name and the minutes that he will score.<br />Separate minutes by a <b>space</b> for same player with more than one goal.(e.g.: 21 46 65)<br />Those values will be used in case of multiple winners. First by name, then by minutes if we still have multiple winners.</span></td></tr>
<tr><td width="50%" valign="top" align="center" colspan="5">
<table class="tborder" width="100%" cellspacing="1" cellpadding="2" border="0"><tr><td class="thead" colspan="5" align="center">$t1</td><tr>
<tr class="alt2"><td> </td><td><span class="smallfont">Player Name</span></td><td align="center"><span class="smallfont">#</td><td><span class="smallfont">Position</td><td nowap align="center"><span class="smallfont">Minutes will Score</span></td></tr>
$playerlist1
</table>
</td>
<td width="50%" valign="top" align="center" colspan="5"><table class="tborder" width="100%" cellspacing="1" cellpadding="2" border="0"><tr><td class="thead" colspan="5" align="center">$t2</td><tr>
<tr class="alt2"><td> </td><td><span class="smallfont">Player Name</span></td><td align="center"><span class="smallfont">#</td><td align="center"><span class="smallfont">Position</td><td nowrap align="center"><span class="smallfont">Minutes will Score</span></td></tr>
$playerlist2
</table>
</td></tr><tr><td colspan="10" align="center"> <input type="submit" name="submit" value="Submit Prediction" class="button" />
</td></tr></td></tr></form>
and playerlist1 soccer_predictplayer1 template (identical to playerlist2)
PHP Code:
<tr><td width="5">$checkbox1</td><td width="45%" align="left"><span class="smallfont"><a href="international/playerinfo.php?pid=$playerid1">$playerlname1, $playerfname1</a></span></td>
<td width="10" align="center"><span class="smallfont">$playernumber1</span></td>
<td align="center"><span class="smallfont">$playerposition1</span></td>
<td align="center">
<span class="smallfont">$minutes1</span></td>
</tr>
Wow, great code for the checkboxes. It works!!!