Php if/else paid member section (help quick!)

I’m redesigning some parts of a sports handicapping site.
They basically sell their picks. When you register (for free)
you then have the ability to purchase various packages of picks.
(e.g. NFL games, NCAA games, MLB games, post-season, etc…)
I’m trying to make all of the plays accessible for non-paying members for a week. Then back to the old version. So I need to tweek this code.
But my knowledge of php&mySQL is limited still, yet I’m picking it up rapidly because of this project (I know the basics and how they work together). I’ll post some excerpts of the code on the page, hopefully you can get a gist of what’s going on.
If someone could really invest a little time into helping out, I’ll point them to the actual page for a better understanding, and throw them some $$$.
I’m in a bind here because we’re expecting a ton of visitors on Monday.
Please help.

Here is the code at the top of the page:


<?
include_once('/usr/home/fss/websites/fivestarsports.net/inc/func.inc.php');

<!--if(!isauthed_fivestar(array('plat_user', 'season_user'), $HTTP_COOKIE_VARS, false)){ // only plat users
	$plat_user = false;
	# check to see that they have some access
	isauthed_fivestar(array('reg_user', 'plat_user', 'season_user'), $HTTP_COOKIE_VARS);
}else{
	$plat_user = true; // week user
}
$username = $HTTP_COOKIE_VARS['log']['username'];
$db_conn = five_connect_db();
mysql_select_db('fivestar',$db_conn);
$arr = pull_content_dailyplay($db_conn);
?>

Then there are numerous table rows with individual buttons in them.
These buttons take the user to an iPay page to purchase the selected package.
Here’s the code for one of the table rows with the button in it:


  <tr>
	     <td bgcolor="#ffffff"><form method=post target=_blank action='https://paysrv.ipay.com/iPayPage.asp' id=form1 name=form1>
<input type=hidden name='MyPriceID' value='{F1F42FA2-32EE-47E6-93D2-A561FE64B41F}'>
    <input type=hidden name='xusername' value='<?=$username?>'>
<input type=submit value='NFL Post Season' class="INPUT"><br>
Purchase Access for all <b>post season NFL picks</b> One time purchase
	      </form></td>
	     </tr>
	     <?
   		 }else{
	     ?>
	   <tr>
	     <td valign="top" bgcolor="#ffffff" class="style1"><span class="style9">You have access to
         all post season NFL picks.</span></td>
        </tr>

So basically it’s saying if this person hasn’t purchased, show the button to purchase and a description. And if they have purchased, show them the text that they do have access. Then below all of the purchase buttons is the code to display the respected package that the person purchased.
Heres’ an example of that:


<?
				if(is_array($arr['NFL']['post'])){
					if(in_array('NFLPLAT',$HTTP_COOKIE_VARS['log']['access']) or in_array('plat_club_football',$HTTP_COOKIE_VARS['log']['access']) or in_array('plat_reg_post',$HTTP_COOKIE_VARS['log']['access'])  or in_array('1daypass',$HTTP_COOKIE_VARS['log']['access'])){
					foreach ($arr['NFL']['post'] as $id => $array){
				?>
				<td>
				NFL - POST<br>
				<?=$array['title']?>&nbsp;&nbsp;<FONT color="Gray" size=2><?=$array['when_added']?></font><br>
				<?=$array['author']?><br>
				<?=$array['rating']?><br>
				<?=$array['body']?>
				</td>
				<?
					}
					}else{
						?>
									<td>
				</td>
						<?
				}
				}else{
				?>
				<td>
				</td>
				<?
				}
				?>