assign( 'platform', 'Windows' ); // // Get friday of last week // $currdate = date("Y-m-d"); while(date("w", strtotime($currdate)) != 5) { $currdate = date("Y-m-d", strtotime("$currdate +1 day")); } $smarty->assign( 'endingweek', date("F j", strtotime($currdate)) ); $smarty->display( 'topten.tpl' ); mysql_close($link_id); ?>