jquery ajaxを介して各関数からデータを送信することにより、ファイルの上書き/書き込みに問題があります。私の post.php が正しくないと思いますが、この機能を手伝ってくれる人はいますか?
$('.mod').each(function(){
var id = $(this).attr('id');
$.ajax({
type: "POST",
url: "post.php",
data: "divid="+id+"&length="+$('.mod').length+"&ok=1",
success: function(msg){ }
});
});
if($_POST['ok']==1){
$File ='index.php';
$Handle = fopen($File, 'w');
$length = $_POST['length'] ;
fwrite($Handle, ''.$_POST['divid'].'<br>');
fclose($Handle);
}
よろしくフランク