Warning: mssql_query() [function.mssql-query]: message: Unicode data in a Unicode-only collation or ntext data cannot be sent to clients using DB-Library (such as ISQL) or ODBC version 3.7 or earlier. (severity 16) in C:\AppServ\www\test\main.php on line 33
Code (PHP)
$QUERY = mssql_query("SELECT * FROM matchinfo where finish='0'") or die(fail);
while($row = mssql_fetch_assoc($QUERY)){
echo"<td>". $row['id']."</td>";
echo"<td>". $row['name1']."</td>";
echo"<td>". $row['name2']."</td>";
echo"</tr>";
echo"</tbody>";
}