前提・実現したいこと
掲示板を作成中です。
入力した内容が表示できるようになりたいです。
該当のソースコード
PHP
1<?php 2 define("CHAT","chat.txt"); 3 date_default_timezone_set('Asia/Tokyo'); 4 5 if($_SERVER["REQUEST_METHOD"]==="POST"){ 6 $text = $_POST['message'].",".date('m月d日 H時i分s秒')."\n"; 7 echo $_POST['message']; 8 file_put_contents(CHAT,$text,FILE_APPEND); 9 } 10 11 if(isset ($_POST['message']) ){ 12 //textがセットされている場合 13 echo $_POST['message']; 14 }else{ 15 //textがNULL、または存在しない場合 16 echo "なし."; 17 } 18?> 19<!DOCTYPE html> 20<html lang="ja"> 21<head> 22 <meta charset="UTF-8"> 23 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 24 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 25 <title>簡易掲示板</title> 26</head> 27<body> 28 29 <form action="index.php" method="post"> 30 <input type="text" name="message"> 31 <button type="submit">送信</button> 32 </form> 33 34 <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> 35 <script> 36 $(function(){ 37 $.ajax({ 38 url: 'chat.txt', 39 }) 40 .done(function(data){ 41 data.split('\n').forEach(function(chat){ 42 const post_text = chat.split(',')[0]; 43 const post_time = chat.split(',')[1]; 44 console.log(chat); 45 console.log(post_text); 46 console.log(post_time); 47 if(post_text){ 48 const li =`<li>${post_text}<span>${post_time}</span></li>`; 49 $('ul').append(li); 50 } 51 52 }); 53 }) 54 }); 55 </script> 56 57</body> 58</html>
試したこと
受け取れているか確かめましたが、「なし」と出ます。
(chat.txtでは
,11月07日 04時01分40秒
,11月07日 04時08分53秒
と表示されます。)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/11/07 00:58
2021/11/07 10:46