Yes thank you also here is another example I came across dealing with the same sort of errors, here it goes…
( ! ) Notice: Undefined variable: score_game_filter in C:\wamp\www\standings\standings_functions.php on line 74
Call Stack
Time Memory Function Location
1 0.0036 232384 {main}( ) …\standings.php:0
2 0.0190 254960 sls_team_schedule( ) …\standings.php:139
( ! ) Notice: Undefined variable: score_sort in C:\wamp\www\standings\standings_functions.php on line 74
Call Stack
Time Memory Function Location
1 0.0036 232384 {main}( ) …\standings.php:0
2 0.0190 254960 sls_team_schedule( ) …\standings.php:139
[php]<?php
$queryscores=“SELECT sportsdb_wins.winid, sportsdb_wins.windate, sportsdb_wins.wintime,
sportsdb_wins.rf, sportsdb_wins.ra, sportsdb_wins.wincomments,
sportsdb_wins.field, sportsdb_wins.winortie,
sportsdb_teams2.teamname AS winningteam,
sportsdb_teams.teamname AS losingteam
FROM sportsdb_wins, sportsdb_teams AS sportsdb_teams2, sportsdb_teams
WHERE sportsdb_teams2.teamid = sportsdb_wins.winner
AND sportsdb_teams.teamid = sportsdb_wins.loser
$team_specific_sort
73. $score_game_filter
74. ORDER BY wintime $score_sort”;
75.
$resultscores=mysql_query($queryscores);
while ($scores = mysql_fetch_array($resultscores, MYSQL_ASSOC)) {
$windateheader=$scores['windate'];
$windateformatted=date("F d, Y",$windateheader);
$wintime=$scores['wintime'];
$hour=date('g',$wintime);
$minute=date('i',$wintime);
$ampm=date('a',$wintime);
?>[/php]