Enumerate each row of a table from a database

while($Row = mssql_fetch_row($Table))
{
echo "<p>Row: ";
var_dump($Row);
}