PHP で簡単なゲストブックを開発するための完全なモジュールの表示

2274.jpg

これまでの準備はほぼ完了です

この章では、準備済みの各種クラスファイル、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(); } } ?>     简单留言本    
您的昵称:
选择头像:

留言内容:
 
    select_page_result($_GET["pn"]); $result=$page_result["page_data"]; //$result=$lydb->select_all_result(); while($row=mysqli_fetch_assoc($result)){ ?>
  • " width="50" height="50" />

    "; echo "回复:".$row["reply"]; echo "__".$row["retime"].""; echo "

    "; } ?>
?>

これですべての機能が完了しました。

注: コースのこの章は単なるデモンストレーションであり、コードは学習の参考のみを目的としています。


学び続ける
||
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(); } } ?> 简单留言本
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!