alright just so I am understanding right in place of
PHP Code:
$query = "SELECT team_id, win, loss FROM match_results WHERE season_id=12";
Use this?
PHP Code:
$myquery = vB::$db->query_read("SELECT team_id, win, loss FROM match_results WHERE season_id=12");
--------------- Added [DATE]1448921015[/DATE] at [TIME]1448921015[/TIME] ---------------
Ok used the new pieces of code you gave me and I no longer get the string error but the data is not being displayed. Is there something else I am missing?