我試圖將一個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>
我怎麼能檢索每行數據並將其保存到數組元素,最後我會保存數組分貝?謝謝
你嘗試過什麼到目前爲止做samething?任何嘗試解析HTML?任何嘗試寫入數據庫?什麼樣的數據庫?你喜歡/可以使用的任何圖書館? – Ryan 2013-03-19 18:18:07
你的問題不清楚。您想要保存每個表格行的值,還是隻保存輸入和文本區域中的值? – SteveP 2013-03-19 18:19:41
爲什麼你會首先使用表格佈局表單元素?使用div/css – GGio 2013-03-19 18:33:19