i have this code and it makes connection to file nhl.xls, but i don`t know how to write an SQL statement to select first collumn in Sheet1?????????
<?
if (!$database = odbc_connect('nhl.xls','','')){
echo "not connected";
} else {echo "is connected";}
$stat= odbc_exec( $database, "?????????" );
if( ! $stat )
{
echo "ERROR";
}
odbc_close($database);
?>