scusate, sto impazzendo!
già ho scritto di questo problema e non ho risolto.
http://forum.html.it/forum/showthrea...readid=1476588
quindi ho modificato i codici semplificandoli ma non trovo ancora il problema

ora nella pagina
http://www.terraditaliaproduction.it/APPOGGIO/file.html
ci sono due form

codice:
<html>
<body>
stampa 200 biglietti 20 euro (qui si potrà aggiungere l'opzione della stampa con bordi rotondi)
<form name="acquisto" method="post" action="modulo.php" target="_blank">
<input type="hidden" name="prodotto" value="biglietti">
<input type="hidden" name="quantita" value="200">
<input type="hidden" name="prezzo" value="20">
<input type="image" src="http://3.bp.blogspot.com/_pVHgkpOZv4E/TUpwEQlwPwI/AAAAAAAABME/qK1JFESMgBM/s1600/100.gif" name="tipo" value="bordirotondi">
</form>
stampa 100 A4 10 (qui si potrà aggiungere l'opzione della stampa fronteretro)
<form name="acquisto" method="post" action="modulo.php" target="_blank">
<input type="hidden" name="prodotto" value="Stampa A4">
<input type="hidden" name="quantita" value="100">
<input type="hidden" name="prezzo" value="10">
<input type="image" src="http://www.zweihundert.de/wp-content/uploads/2008/12/myspace2.jpg" name="tipo" value="fronteretro">
</form>
</body>
</html>
nel file "modulo.php" che viene richiamato ho scritto un "semplice" codice

<?php
$tipo= $_POST["tipo"];
$prova= "bordirotondi";
echo $tipo;
echo '| bordirotondi |';
if(strcmp($tipo,$prova)==0) echo 'ciao';
if($tipo=="bordirotondi") echo 'arrivederci';
?>

ora io mi chiedo perchè il tutto funziona con chrome e con safari, ma non con firefox e con explorer..

vi ringrazio anticipatamente anche non per soluzioni complete ma per idee e suggerimenti.
grazie tante

ps. nel titolo ho scritto che non funziona "$_post" perchè come vedrete su firefox o explorer sembra quasi che il valore non venga preso