Upgrade to Pro — share decks privately, control downloads, hide ads and more …

学情絶叫ウェブシステムGX

Sora Arakawa
December 26, 2021

 学情絶叫ウェブシステムGX

静大情報LT大会 -2021年12月-

Sora Arakawa

December 26, 2021
Tweet

More Decks by Sora Arakawa

Other Decks in Programming

Transcript

  1. 学情絶叫 ウェブシステムGX ~Development the system and manage contents in the

    server.~ Sora Arakawa (arkw) 2021/12/26 静大情報LT大会@静岡大学 浜松キャンパス 「#静大情報LT」でツイートすると 画面上部に表示されます!
  2. 自己紹介 Sora Arakawa(arkw) • 静岡大学 情報学部 行動情報学科 B2 • 所属:某室(長)、xRサークルはまりあ、ICON

    • 愛知県岡崎市出身→静岡県浜松市在住 • 光回線開通しました • https://arkw.net/ • シンフォギア未履修(ここ重要)(OP曲がすき)
  3. <?php $list = [ "reference" => "資料集", "rules" => "学情チャンとのお約束",

    "contest" => "コンテスト", "404" => "404 Not Found", "illustcon_1" => "第1回 学情チャンイラストコンテスト", "illustcon_2" => "第2回 学情チャンイラストコンテスト", "writecon_1" => "第1回 書いたよ学情チャンコンテスト" ];
  4. <?php include_once "list.php"; $id = $_GET["p"]; if (isset($id) == "")

    { $id = "top"; } else { if (!file_exists("page/".$id.".html")) { $id = "top"; } $title = $list[$id]; } $main = file_get_contents("page/".$id.".html"); ?>
  5. // タイトル <title><?php if (isset($title) == "") { echo "学情チャン

    公式ウェブサイト"; } else { echo "".$title." - 学情チャン 公式ウェブサイト"; } ?></title>