Here is the code:
$conn=mssql_connect($DataSource,$UserId,$Password) or die("Couldn't connect to server.");
mssql_select_db($InitialCatalog,$conn);
$sAgentID="ufo0008";
$sSQL="SELECT * FROM telecom1.RatePlans where rateplan='1'";
$rs_query=mssql_query($sSQL,$conn);
$rs = mssql_fetch_array($rs_query);
echo $rs[1];
The value it should return is .059 but php always returns 0.06 anyone know the problem?