Jump to content

PHP/HTML/SQL allow contenteditable cell to write back to SQL database


lordterrin

Recommended Posts

I have a table that has a cell that I've made editable:

echo "<td contenteditable='true'>" . $row['Comments'] . "</td>";

Which is cool I guess, but it doesn't go anywhere from there.  I'd like to make it so that upon changing, it links back to an SQL UPDATE query that I define.  Is this possible through some sort of onChange function?

Link to comment
Share on other sites

2 for 2.  thanks :)

 

Reading up on blur, it seems like it takes focus away from something - I'm not sure how that enables me to do what I'm looking to do.  I'm still in the learning phase of web development, so I'm not entirely sure how I would utilize this to accomplish what I'm looking to do.  From the w3schools page on blur, there is a portion that (in theory) does exactly what I'm looking for:

<input type="button" onclick="getfocus()" value="Get focus">

so when the button is clicked, it calls the function "getfocus()".  If I could write something that could automatically call a function when I change the contents of the table cell, that would be perfect as I could put the code I want to execute inside that function.  Is that possible?

Edited by lordterrin
Link to comment
Share on other sites

So I've done a bit of reading, and it seems that I may be able to assign an id inside of a <tr>, then use javascript's addEventListener to do something.  

 There is an example of something similar here:  http://jsfiddle.net/CcqU7/222/

 

 

so my code starts here:

 

echo "<td id='PMCUpdate' style='width:70' contenteditable='true' id='PMC'>" . $row['Comments'] . " </td>";

 

Then in the header section, I have this:

 

<script language="javascript1.2">     
 
var SQLPMC = document.getElementById("PMCUpdate"),
 
SQLPMC.getElementById("PMCUpdate").addEventListener("input", function() {
    alert("input event fired");
}, false);
 
  </script> 

 

Reading through this, it seems to make sense... but nothing happens.  I'd like for each cell in the comments column of my table to be editable, which they are, but when someone types something into that cell I want it to take whatever the new contents of that cell are and update it back into my database.  Right now, I'm using alert("input event fired"); just to test, but I'm doing something wrong.

Link to comment
Share on other sites

Did you actually read that code?

 

What's the comma at the end of the line doing there? What is SQLPMC.getElementById() supposed to do? SQLPMC already is the element you're looking for.

 

I suggest you take your time and carefully write the code line by line. You also need to get familiar with the JavaScript console of your browser (just Google for it). This will show you the exact errors so that you can fix them.  

Edited by Jacques1
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.