PHPで学習中
エラーメッセージ
Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in
<p><?php echo htmlspecialchars($list['list']); ?></p>
修正後
<p><?php echo htmlspecialchars($list['list'] ?? ''); ?></p>
nullだめ
?? → 値がない場合は??の右側を返す
とりあえずメモ
後日、書き直します。
参考サイト
https://habone.biz/7815