NZ_Kiwis;10985629 wrote:Does that work in 5.3.1?
Nope; from the requirements page ([man]mssql.requirements[/man]):
PHP Manual wrote:This extension is not available anymore on Windows with PHP 5.3 or later.
NZ_Kiwis;10985629 wrote:I thought someone i read it does not work in anything higher the 5.0?
Not quite - see above.
NZ_Kiwis;10985629 wrote:What would be the typical port number for MS Server?
http://www.google.com/search?q=mssql+default+port+number
NZ_Kiwis;10985630 wrote:at the end of my connection i have a
echo "Hello";
I can't see this and I know errors are turned off, how can I see what the error might be?
Turn errors on.
NZ_Kiwis;10985631 wrote:Is my issue because my username and password only works for one database on the server yet i'm not saying which database until later in the code?
Who knows? It's possible. Rather than guess as to what the error is, it'd be much easier to just enable error reporting and let PHP tell you what the error is.
EDIT: For example, if a simple echo statement isn't being displayed, PHP might be trying to tell you that you've got a parse error and that in fact none of your code was ever executed at all. Or it could be some 'Fatal Error' (such as the use of an undefined function).