I am trying to replace the data in a MySQL row. I have the code for the user to sign up, and when they sign up they are assigned an id and their “plannerTable” is set to null. I know how to receive the data from the users row, but how do I replace the data in the users “plannerTable”? -Josh If more info is needed I am happy to supply more info.
Code:
JavaScript
x
65
65
1
var clearQuestion = document.getElementById("clearPopup")
2
3
document.onkeydown = function(e) {
4
if (e.which == 27 && clearQuestion.style.display != 'none') {
5
clearQuestion.style.display = 'none';
6
}
7
}
8
if (localStorage.plannerTable === undefined) {
9
saveEdits()
10
}
11
12
if (typeof localStorage.plannerTable != 'object' && localStorage.plannerTable !== undefined) {
13
var parsedPlannerTable = JSON.parse(localStorage.plannerTable)
14
} else {
15
parsedPlannerTable = localStorage.plannerTable
16
}
17
18
function checkEdits() {
19
if (localStorage.plannerTable !== undefined && localStorage.plannerTable !== null) {
20
let plannerTableDict = parsedPlannerTable
21
for (id in plannerTableDict) {
22
if (plannerTableDict[id] !== null && plannerTableDict[id] !== '') {
23
document.getElementById(id).innerHTML = plannerTableDict[id]
24
}
25
}
26
}
27
}
28
29
function saveEdits() {
30
let tempPlannerDict = {}
31
for (r=1; r<10; r++) {
32
for (c=1; c<8; c++) {
33
try {
34
tempPlannerDict['iR' + r + 'C' + c] = document.getElementById('iR' + r + 'C' + c).innerHTML
35
} catch (error) {
36
}
37
}
38
}
39
localStorage.plannerTable = JSON.stringify(tempPlannerDict)
40
}
41
42
function clearPlanner(){
43
localStorage.removeItem('plannerTable')
44
location.reload()
45
}
46
47
function clearWork(){
48
let tempPlannerDict = parsedPlannerTable
49
let emptyAmount = 0
50
for (element in tempPlannerDict) {
51
// console.log(element.substring(2,3), element.substring(4), element)
52
if (element.substring(2,3) != 1 && element.substring(4) != 1) {
53
// console.log('clearing item')
54
tempPlannerDict[element] = ''
55
emptyAmount++
56
}
57
}
58
console.log(emptyAmount, tempPlannerDict)
59
if (emptyAmount == 57) {
60
localStorage.removeItem('plannerTable')
61
} else {
62
localStorage.plannerTable = JSON.stringify(tempPlannerDict)
63
}
64
}
65
Advertisement
Answer
I am assuming that the user id is the table key, meaning that all users have a unique id.
To change the plannerTable you need to execute a query that resembles this:
UPDATE usersTable SET plannerTable = ? WHERE id = ?
and pass two items to this query – plannerTable content (whatever it is in your app) and the user id for the user that you want to change.