[PHP-DB] Re: MSSQL Server

2007-02-20 Thread Haydar Tuna
Hello, If you can change the SQL Server Authentication to the Mixed Mode (Windows and Remote User), your problem will be fixed. If you use the Unix like Operating System, you can install FreeTDS package to connect MSSQL Server.:) -- Haydar TUNA Republic Of Turkey - Ministry of Nationa

[PHP-DB] Re: SQL query error

2007-02-20 Thread Haydar Tuna
Hello, Do you check the how many rows return. You can display rows count with following PHP code. If rows count is zero, you can see the blank page. :) $num_rows = mysql_num_rows($result); echo ($num_rows); -- Haydar TUNA Republic Of Turkey - Ministry of National Education Education T

[email protected]

2007-02-20 Thread Haydar Tuna
Hello This (=&) is used in the variable references. in $ref=&$array["2"] line $ref variable and $array["2"] variable point at the same address. if you assign any value to this any variables, both of them will change their values because echo($ref) line display b on the screen. -- Haydar