Probleme mit Http_post_vars und IE

  • so sieht mein code aus

    Code
    <form name="navi" method="post" action="/print.html" target="_blank">
    <input name="print[]" type=image value="print.page" src="../../images/net/drucken.png">
    </form>


    auf der seite /print.html lass ich mir die $HTTP_POST_VARS mit
    echo "<pre>";
    print_r($HTTP_POST_VARS);
    echo "</pre>";

    anzeigen. mach ich das mit dem firefox dann siehts so aus

    Code
    Array
    (
        [print] => Array
            (
                [0] => 25
                [1] => 1
                [2] => print.page
            )


    beim IE siehts so aus

    Code
    Array
    (
        [print] => Array
            (
                [0] => 25
                [1] => 1
            )


    kann mir jemand helfen

    gruß buffy