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

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -