Passing Array from Javascript to PHP and insert it in MYSQL -
i have code here gets data spreadsheet , display in array.
var publicspreadsheeturl = "link"; var tabletop = tabletop.init( { key: publicspreadsheeturl, callback: showinfo, simplesheet: true }) function showinfo(data, tabletop) { arrmasterfile.push(data); console.log(arrmasterfile); } this output
0:{title: "", data "", title: "data ", title: "data ", title: "data ", …} 1:{title: "", data "", title: "data ", title: "data ", title: "data ", …} my question how can pass array in php? target here save in mysql. tysm
Comments
Post a Comment