here's my setup :
Redhat 9.0
Apache 2.0
Php 4.3.3
freeTds
Zend studio 3.0 (php_mssql.so extension in php.ini)
this server needs to connect to a MSSQL 2000 residing on a win machine. Everything works okay except for these two functions :
mssql_affected_rows
mssql_rows_affected
while debugging,ZEND studio will give an error if I use mssql_affected_rows but if I view the php file using an ordinary browser it will not give me any error, eventhough the line is skipped.
I f i change the php file to mssql_rows_affected, mozilla will give me a fatal error stating that the function in not define and on ZEND studio, it will recognize the function and give the the proper output..
The PHP manual states that the correct syntax is mssql_rows_affected (php 4.0 and above) and I think mssql_affcted_rows is obsolete ( < php 3.0 i think).
Can anyone explain how should I go about solving this problem...TIA