具有多种语言的数组到字符串

时间:2016-04-07 21:37:13

标签: javascript php json

我有一些数据通过php输入到我的表单中。我正在添加其他信息,然后发送出去。没有人知道我的表中会有多少行,而值1-3是我要添加到每一行的附加信息。

我如何发送信息:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/mvc
       http://www.springframework.org/schema/mvc/spring-mvc.xsd 
       http://www.springframework.org/schema/context 
       http://www.springframework.org/schema/context/spring-context.xsd">

    <mvc:annotation-driven />

    // same as before
</beans>

我认为我需要让它作为应用程序的字符串出去(我意识到这里有很多选项,我不知道如何让它工作)我需要这样做出去一个字符串,现在它被收到一个数组:

if(isset($_POST['val1']))
    {
        echo "Submitting\n";
print_r($_POST);
        $variable = "val1=" . $_POST['val1'] . ",val2=" . $_POST['val2'] . ",val3=" . $_POST['val3'];
        // set post fields
        $post = [
        'submit' => 'true',
        'activity_name' => 'DataSend',
        'params'   => [
            'Data' => $variable
        ]
        ];

0 个答案:

没有答案