I want to do this:
- user load a csv file
- it reads the data one by one
- php do the processing, it takes quite some time
- php enter the process to mysql
problems are:
- csv file is too large, so the php hit the 30 secs time limit.
- the processed data should be entered to sql in order and one by one
- running just the php, the connection to mysql can't keep up, so far i need to separate the csv to 30 lines per file so it could be entered correctly to mysql.
I think combining with jquery:
- jquery reads the file
- jquery pause 1 second per csv line
- jquery is client side so it won't have time limitation
- jquery then call php which in turn will send to mysql
I'm stuck with jquery, because it sends the data in csv in non-ordered way.
What I need help is to pause the jquery.post one by one in example 1 second interval each.
here's the code that i've come up so far. i need the "pausing" effect for each post
<script>
$(function () {
var o1;
var o2;
$.ajaxSetup({cache: false});
$('#load').click(function () {
$.get($('#file').val(), function (content) {
//get the file and convert into single array
o1 = content.split(new RegExp("\n")).map(function (element) {return $.trim(element).toLowerCase();})
//---------------------------------------------------------------------------- Display
$("#box").empty();
$.each(o1,
function( i, j ){
if (j!=""){
//add the tr
//$("#tbl").append($( "<tr id=\"tr-"+i+"\"></tr>" ));
//split again
o2 = j.split(new RegExp(",|\r")).map(function (element) {return $.trim(element).toLowerCase();});
$.post('test2.php',{jquery:'1' , d:o2[0] , o:o2[1] , h:o2[2] , l:o2[3] , c:o2[4]},function(res){
$("#box").append(res);
});
}//end if
}//end function
);//end each
//---------------------------------------------------------------------------- end of display
});
});
});
</script>
</head>
<body>
<form>
<input id="file" type="file" />
<input type="button" id="load" value="Load CSV" />
</form>
<hr />
<table id="tbl" border="1"><tbody></tbody></table>
<div id="box"></div>
<ol id="list"></ol>
</body>
and this is the 'test2.php' file content. it's just an example of what i will do, the real code is of course more complex:
if ($_POST){
@$_POST['jquery']!=''?$jquery=$_POST['jquery']:$jquery='';
if ($jquery!=''){
@$_POST['d']!=''?$d=$_POST['d']:$d='';
@$_POST['o']!=''?$o=$_POST['o']:$o='';
@$_POST['h']!=''?$h=$_POST['h']:$h='';
@$_POST['l']!=''?$l=$_POST['l']:$l='';
@$_POST['c']!=''?$c=$_POST['c']:$c='';
echo 'D: '.$d.' - '.$o.' - '.$h.' - '.$l.' - '.$c."<br />\n";
}
}
Really need help here. thanks.