2016-07-31 65 views
0

如何使用php和jquery將x-editable表單值保存到mysql數據庫中。將x-editable值保存到mysql數據庫中

這裏是我的鏈接:

<a href="#" id="username" data-type="text" data-pk="1" data-title="Enter Username">John</a> 

<script> 
    //editables 
    $('#username').editable({ 
      url: '', 
      type: 'text', 
      pk: 1, 
      name: 'username', 
      title: 'Enter username' 
    });  
</script> 

在我試圖

if(isset($_POST['username'])){ 
echo $_POST['username']; 
} 

同一頁面,但我沒有得到價值....

enter image description here

+0

你能描述一下嗎?它不工作。你發送的價值?你有錯誤嗎? – chris85

回答

0

你必須訪問其他POST密鑰。

if(isset($_POST['name'])){ 
    echo $_POST['name']; 
}