Qualcuno potrebbe spiegarmi perchè mi stampa 54 valori di array mentre i campi in totale ne sono 27 ?????????

Ne conta giusto il doppio.



---------------------------------------------------------------------
$query = mysql_query("SELECT * FROM camicie where nome='".$cercanome."' || cognome='".$cercacognome."'");

$righe = mysql_num_rows($query);

if ($righe == 0){
header("location: no_clienti.php");
}

while ($row = mysql_fetch_array($query)){

$conta = count($row);

print $conta;
....
--------------------------------------------------------------------