简体   繁体   English

php POST 表单查询更新动态变量

[英]php POST form query update dynamic variable

i have this form我有这个表格

<form method="post" action="process.php">
    Name: <input type="text" name="name" value="">
    <br />
    English: <input type="text" name="english" value="">
    <br />
    French: <input type="text" name="french" value="">
    <br />
    <input type="submit" name="submit" value="Submit">  
</form>

and we make this query on process.php我们在 process.php 上进行这个查询

$query = "
        UPDATE
        `translations_structure`
        SET
        `updated_on` = '".time()."',
        `english` = '".utf8_encode($english)."',
        `french` = '".utf8_encode($french)."'
        WHERE
        `id` = '".$id."'";

and if i edit the table languages and add more languages the form dynamically will modify to lets say this example如果我编辑表格语言并添加更多语言,表单将动态修改为让我们说这个例子

<form method="post" action="process.php">
    Name: <input type="text" name="name" value="">
    <br />
    English: <input type="text" name="english" value="">
    <br />
    French: <input type="text" name="french" value="">
    <br />
    Spanish: <input type="text" name="spanish" value="">
    <br />
    German: <input type="text" name="german" value="">
    <br />
    <input type="submit" name="submit" value="Submit">  
</form>

and the query i need to dynamically be edited和我需要动态编辑的查询

$query = "
        UPDATE
        `translations_structure`
        SET
        `updated_on` = '".time()."',
        `english` = '".utf8_encode($english)."',
        `french` = '".utf8_encode($french)."',
        `spanish` = '".utf8_encode($spanish)."',
        `german` = '".utf8_encode($german)."'
        WHERE
        `id` = '".$id."'";

what i don't understand is how i make this dynamically inside the query the code我不明白的是我如何在查询代码中动态地做到这一点

*the name of the form field is the same of the name of the variable i POST *表单字段的名称与变量 i POST 的名称相同
*and the name of the column from the table is the same of the name of the POST *并且表中列的名称与POST的名称相同

    `english` = '".utf8_encode($english)."',
    `french` = '".utf8_encode($french)."',
    `spanish` = '".utf8_encode($spanish)."',
    `german` = '".utf8_encode($german)."',
    `other_language` = '".utf8_encode($other_language)."',
    `other_language2` = '".utf8_encode($other_language2)."'

here above i have explained how i make the query but i cant understand how to write the variables上面我已经解释了如何进行查询,但我无法理解如何编写变量

I know is a little bit difficult what i need but maybe someone understand what i need我知道我需要什么有点困难,但也许有人明白我需要什么

thank you谢谢

Above this line is the edited message because someone flagged this message answered此行上方是已编辑的消息,因为有人标记了此消息已回答





I will explain first what i want to do:我将首先解释我想做什么:

I have a table called "translations" where i store the languages.我有一个名为“translations”的表,用于存储语言。 ex: english, french, spanish, etc.例如:英语、法语、西班牙语等。
I use a form to update the new values, the problem is that i want to do it dynamically not to insert this query on every php file manually because the languages table will grow or edit and i want to work dynamically not to edit every php file.我使用一个表单来更新新值,问题是我想动态地做而不是手动在每个 php 文件上插入这个查询,因为语言表会增长或编辑,我想动态工作而不是编辑每个 php 文件.
the variable names are the same like fields name in database i manage to make an array for the names on table translations变量名称与数据库中的字段名称相同,我设法为表翻译中的名称创建一个数组

this is what i have until now to make it dynamic the problem is i don't know how to insert variables in the query $_POST['english'], $_POST['french'], etc这就是我到目前为止使它动态的问题是我不知道如何在查询 $_POST['english']、$_POST['french'] 等中插入变量

$db = new DB();
$query = $db->query("SELECT * FROM `translations_languages` ORDER BY `name` ASC");
while($row = $query->fetch_assoc()){
    $values[] = "`{$row['name']}` = '{$row['name']}'";
}

    $dynamic_result = "".strtolower(implode(",", $values))."";
    $query = "
    UPDATE
    `translations_structure`
    SET
    `updated_on` = '".time()."',
    $dynamic_result
    WHERE
    `id` = '".$id."'
    ";

echo "$query";

and this is how the query looks normally这就是查询的正常外观

$query = "
            UPDATE
            `translations_structure`
            SET
            `updated_on` = '".time()."',
            `english` = '".utf8_encode($english)."',
            `french` = '".utf8_encode($french)."',
            `spanish` = '".utf8_encode($spanish)."'
            WHERE
            `id` = '".$id."'";

i want to add these values to the query我想将这些值添加到查询中

`english` = '".utf8_encode($english)."',
`french` = '".utf8_encode($french)."',
`spanish` = '".utf8_encode($spanish)."'

you just need to create a dynamic update array.您只需要创建一个动态更新数组。 Something like this:像这样的东西:

$languagesToUpdate = array();

// this is an example, you should modify as your script:

// create a variable/constant to make sure you update only allowed fields
$allowedLanguages = array('english' => true, 'french' => true, 'spanish' => true, 'german' => true, 'other_language' => true);

// iterate threw post and check for allowed languages and add to languagesToUpdate the language we need to update with it's value
foreach ($_POST as $post => $value) {
    if (isset($allowedLanguages[$post]) && $allowedLanguages[$post]) {
        $languagesToUpdate[] = '`' . $post . '` = "' . utf8_encode($value) . '"';
    }
}

// add additional data like updated_on
$languagesToUpdate[] = '`updated_on` = ' . time() . '';

//update database
$db = 'UPDATE `translations_structure` SET '.implode(', ', $languagesToUpdate).' WHERE `id` = '.(int)$id;

// this will produce something like this:
// UPDATE `translations_structure` SET `english` = "English text", `spanish` = "Spanish text", `updated_on` = 1479720637 WHERE `id` = 1

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM