?>
私は PHP を学び始め、メッセージボードを作成するコードの書き方を学び始めたところです。書き込まれたページに「返信」と「削除」のオプションがない理由を理解できる人はいますか? ? ?
?php
session_start();
$lydb=new LyDB();
if(isset($_POST["type"])){
if($_POST["type"]=="挿入"){ if(Authority::check_insert()==true){
$lydb->insert($_POST["ニックネーム"],"スタイル/アバター/".$_POST["アバター"],$_POST["メッセージ" ]);
header("Location:indexy.php");
exit();
}
}
else if($_POST["type"]=="ログイン"){
if(isset($_POST[ "ユーザー名"]) && isset($_POST["パスワード"])){
$dd=User::validate($_POST["ユーザー名"],$_POST["パスワード"]);
if($dd= =true){
$_SESSION["ユーザー名"]=$_POST["ユーザー名"];
header("Location:indexy.php")
}
else{
}
}
}
else if($_POST["type"]=="返信"){
$id=$_POST["id"];
$lydb->reply( $id,$reply);
header("Location:indexy.php");
}
}
else if(isset($_GET["type"]){
if($_GET[ "type"]=="削除"&& isset($_GET["id"])){
if(Authority::check_delete()==true){
$lydb->delete_by_id($_GET["id" ]);
header("Location:indexy.php");
}
}
else if($_GET["type"]=="logout"){
session_destroy(); "Location:indexy.php");
exit();
}
}