0
我有一個HTML頁面,可以讓你創建聯繫人。內容可編輯點擊和保存
創建時,它使用php保存到.csv文件中。
print "<thead style='color: blue; background-color: #DCDCDC'><tr>";
$Info = array("ID", "Picture", "Title", "FirstName", "LastName", "Email", "WebSite", "CellNo", "HomeNo", "OfficeNo", "Twitter", "Facebook", "Comment");
foreach($Info as $Heading)
{
print "<th style='border: 1px black solid;'>$Heading</th>";
}
print "</tr></thead>";
//Print all contact info using PHP..
我現在需要能夠使一個行中的表格編輯,只有當用戶點擊它旁邊的一個鏈接,然後保存回:所有的聯繫人列表,然後利用顯示在表.csv。
還可以在單擊鏈接旁邊的鏈接時刪除該行。
我該怎麼做?我可以使用表格和$_POST
做到這一點,但我無法弄清楚如何使用ContentEditable屬性和鏈接進行操作。
任何有關如何實現這一目標的想法或示例?或者我僅限於表單?
嘗試這樣:http://css-tricks.com/examples/EditableInvoice/ – Hackerman 2013-02-25 19:51:35