将HTML表行转换为PHP数组并保存到数据库中



我试图将html表行保存为php数组,然后将数组保存在数据库中。

<form action="" method="post">
        <table class="widefat" id="theTable">
                        <thead>
                                <tr>
                                   <th>Level Identifier</th>
                                    <th>Non-logged in message</th>
                                    <th>Logged in message</th>
                                </tr>
                        </thead>
                        <tbody>
                                  <tr>
                                    <td><input type="text" value="" style="height: 19px;background-color: white;font-size:10px;"/></td>
                                    <td><textarea style="font-size:10px;" name="promo_msg_free" cols="43" rows="1">This is your custom message template</textarea></td>
                                    <td><textarea style="font-size:10px;" name="promo_msg_free" cols="43" rows="1">This is your custom message template</textarea></td>
                                  </tr>
                                   <tr>
                                    <td><input type="text" value="" style="height: 19px;background-color: white;font-size:10px;"/></td>
                                    <td><textarea style="font-size:10px;" name="promo_msg_free" cols="43" rows="1"></textarea></td>
                                    <td><textarea style="font-size:10px;" name="promo_msg_free" cols="43" rows="1"></textarea></td>
                                  </tr>
                        </tbody>    
                    </table> 
                </form>

我怎么能检索每一行数据,并将其保存到数组元素,最后我会保存数组到db?由于

如果你想保存每一行的HTML:

使用JQuery。

var rowsArray = {};
var i = 0;
$('#theTable tr').each(function({
    rowsArray[i] = $(this).html(); // if you want to save the htmls of each row
    i++;
});

然后使用ajax来发布这些数据

$.ajax({
   type: 'post',
   url: URL_TO_UR_SCRIPT,
   data: { myarray : rowsArray },
   success: function(result) {
     //ur success handler OPTIONAL
   }
});

在PHP端:

$array = isset($_POST['myarray']) ? $_POST['myarray'] : false;
if ($array) { 
  $array = serialize($array);
  //UPDATE YOUR DATABASE WITH THIS SERIALIZED ARRAY
}

你不能保存php数组到数据库中,因此你需要序列化它,当你从数据库检索它时使用unserialize()

如果您想要保存输入和文本区域值,那么您需要设置每个元素的名称,然后在脚本中使用$_POST访问它们。

 $array = array;
 foreach($_POST as $key => $value) {
    //sanitize your input here
    $array[$key] = $value;
 }
 $serialized = serialize($array);
 //save serialized array in your DB

注/提示:仅供参考,不要使用html表来布局表单元素。应该使用表来表示数据。您可以使用div css

轻松完成相同的操作。

这是基本的PHP用法。您给您的输入名称,当您提交表单时,提交页面中的脚本将完成这项工作。

您的值将驻留在

$_POST 

数组。你可以通过

访问它们
$_POST['input_name']

您必须通过调用其名称来遍历每个值,然后相应地将其放入数据库

相关内容

  • 没有找到相关文章

最新更新