inside my PHP script i am trying to access a MySQL column name that contains a space.
ex: $Query = "SELECT team code from teams"
that same SELECT statement works fine within a MySQL command line, but when my PHP script runs it, i receive the following error:
Parse error: parse error, expecting `T_STRING' in standings.php
how can i access the "team code" column inside a PHP script.
Thanks in advance.