I am making this SQL database using HTML5 the code is here
<!DOCTYPE HTML>
<html>
<head>
<script>
var db = openDatabase('mydb', '1.0', 'Test DB', 2 * 1024 * 1024);
var msg;
db.transaction(function (tx) {
tx.executeSql('CREATE TABLE IF NOT EXISTS LOGS (id unique, log)');
tx.executeSql('INSERT INTO LOGS (id, log) VALUES (1, "foobar")');
tx.executeSql('INSERT INTO LOGS (id, log) VALUES (2, "logmsg")');
msg = '
Log message created and row inserted.
';
document.querySelector('#status').innerHTML = msg;
});
db.transaction(function (tx) {
tx.executeSql('SELECT * FROM LOGS', [], function (tx, results) {
var len = results.rows.length, i;
msg = "
Found rows: " + len + "
";
document.querySelector('#status').innerHTML += msg;
for (i = 0; i < len; i++){
msg = "
" + results.rows.item(i).log + "
";
document.querySelector('#status').innerHTML += msg;
}
}, null);
});
</script>
</head>
<body>
Status Message
</body>
</html>
This codes adds the information in enter to my databse
tx.executeSql('INSERT INTO LOGS (id, log) VALUES (1, "foobar")');
tx.executeSql('INSERT INTO LOGS (id, log) VALUES (2, "logmsg")');
But instead of this, i want my user to enter their information in a textbox which then saves to my database
Please help
Thanks