You are using $MyRows not as the resulting row, but as the returning row being successful, which is why you are displaying a 1.
Use odbc_result($MyRows, x), where x would be the field number from your SELECT query, or the name of the field itself.
e.g.
$column0 = odbc_result($MyRows, 0);
$column1 = odbc_result($MyRows, 1);
... then use these variables in your print statement
Also, try using the field names instead of * in your SELECT query - if you alter the table structure in any way, it could affect the display results in your queries later on.