image_x image_y在表单上提交而不是'image'来自'image'?

时间:2012-09-01 18:42:50

标签: php html image post

我尝试创建一个语言选择页面,但是当提交id =“image”的'value'参数时,name =“image”没有通过,而是在$ _POST中得到image_x和image_y ..

这是我的代码:

session_start();

include("languages.php");
function lng($which)
{
    global $ARRXKS;
    return $ARRXKS[$_SESSION['lang']]["$which"];
}

function LangChoose()
{
    echo('
        <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
        <html xmlns="http://www.w3.org/1999/xhtml">
        <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>Meet-Helmond.nl SMS Service - Select your Language</title>
        <link href="css.css" rel="stylesheet" type="text/css" />
        </head>

            <div class="information">
            <div class="boxinfo">Cookies MUST be enabled to use this website!</div>
            <p>

            <form id="loginForm" name="loginForm" method="post" action="index.php">');
            echo('<BR />');
            print_r($_POST);
            echo('<BR />');
            global $ARRXKS;
            $LANG_keys = array_keys($ARRXKS);
            $count = 1;
            for ($i = 0; $i <= count($ARRXKS) - 1; $i++)
            {
                echo('<input type="image" src="images/flags/'.$LANG_keys[$i].'.png" name="image" id="image" value="'.$LANG_keys[$i].'">');
                if((($count) % 5) == 0)
                {
                    echo('<BR />');
                }
                $count = $count + 1;
            }

            echo('
            </form>

            </div>

        <body>

        </body>

        </html>

    ');
}
//print_r($_POST);
if(!isset($_SESSION['lang']))
{
    if ($_SERVER['REQUEST_METHOD'] == 'POST')
    {
        if(isset($_POST['image']))
        {
            if (array_key_exists($_POST['image'], $ARRXKS))
            {
                $_SESSION['lang'] = $_POST['image'];
            }
            else
            {
                LangChoose();
                exit();
            }
        }
        else
        {
            LangChoose();
            exit();
        }
    }
    else
    {
        LangChoose();
        exit();
    }
}

因此,当我检索它时,它无法检测到我选择的语言,如何才能正确提交所点击图像的值?

1 个答案:

答案 0 :(得分:0)

提交时的图片没有任何价值。而是由浏览器提交像素中的x和y坐标。这是完全正常的以及图像输入元素的工作方式。

相反,您可能希望使用通过CSS样式或更现代的按钮输入元素具有图形的提交按钮。

使用您选择的HTML参考来阐明您对输入图像标记的理解,并了解提交输入和按钮输入。