Use POST requests for structure changes

Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
This commit is contained in:
Madhura Jayaratne 2015-08-27 08:51:07 +10:00
parent 820c39379c
commit cc94aaa597

View File

@ -209,7 +209,7 @@ function goTo2NFFinish(pd)
"newTablesName":JSON.stringify(tables),
"createNewTables2NF":1};
$.ajax({
type: "GET",
type: "POST",
url: "normalization.php",
data: datastring,
async:false,
@ -254,7 +254,7 @@ function goTo3NFFinish(newTables)
"newTables":JSON.stringify(newTables),
"createNewTables3NF":1};
$.ajax({
type: "GET",
type: "POST",
url: "normalization.php",
data: datastring,
async:false,