txtファイルをサーバー上のフォルダーに書き込むことはすでに機能していますが、クリックしたIDの名前を読み込んでファイル名に書き込むのに問題があります。
ボタンをクリックした瞬間、id 名があるべき場所の txt ファイル名が空になっています。
コードは次のとおりです。
HTML ボタン:
<div class="ch-item pbar11" id="start_id" onclick="capture(this);">
</div>
jQuery:
<script type="text/javascript">
function capture(elem) {
var id_name = $(elem).attr("id");
$.ajax({
type: "POST",
url: "savetxt.php",
data: id_name,
});
return false;
}
</script>
PHP:
<?php
$id_name = $_POST['id_name'];
$file = "saved/"."User-".$_SERVER['REMOTE_ADDR']."-Zeit-".date('i-s')."-".$id_name.".txt";
$f = fopen ($file, 'a+');
fwrite($f);
fclose($f);
?>