What does the @ mean, and why would it change my output?
$sql = "SELECT * FROM TABLE order by COLUMN asc "; $sql_result = mssql_query($sql, $connection) or die("Couldn't execute query.");
@function() suppressess any error messages that the function might otherwise display if it fails.
perfect Barand - Many Thanks!