PHP で簡単なゲストブックを開発するための完全なモジュールの表示
これまでの準備はほぼ完了です
この章では、準備済みの各種クラスファイル、JSファイル、CSSファイルを呼び出すだけです
効果を示すために、まだ呼び出していませんJS ファイルと CSS ファイルを友達が試してみることができます。
insert($_POST["nickname"],"style/avatar/".$_POST["avatar"],$_POST["message"]); header("Location:index.php"); exit(); } } else if($_POST["type"]=="login"){ if(isset($_POST["username"]) && isset($_POST["password"])){ $dd=User::validate($_POST["username"],$_POST["password"]); if($dd==true){ $_SESSION["username"]=$_POST["username"]; header("Location:index.php"); exit(); } else{ } } } else if($_POST["type"]=="reply"){ $id=$_POST["id"]; $reply=$_POST["reply"]; $lydb->reply($id,$reply); header("Location:index.php"); exit(); } } else if(isset($_GET["type"])){ if($_GET["type"]=="delete"&& isset($_GET["id"])){ if(Authority::check_delete()==true){ $lydb->delete_by_id($_GET["id"]); header("Location:index.php"); exit(); } } else if($_GET["type"]=="logout"){ session_destroy(); header("Location:index.php"); exit(); } } ?>简单留言本 ?>
これですべての機能が完了しました。
注: コースのこの章は単なるデモンストレーションであり、コードは学習の参考のみを目的としています。