I'm just using the mssql_query function.
this works:
$iResultId = mssql_query( "SELECT * FROM Users" ,$dbconId );
this works but $iResultId is always = false
$iResultId = mssql_query( "INSERT INTO Users( Id , Name , Password ) VALUES( 10 , "test" , "test" ),$dbconId );
THis means that when ever i test to see if the query was successful then it always goes to the error page even though the insert statement was successful.
And i don't want to use ODBC if i can help it.