用意するもの
XAMPP
・公式ページよりダウンロード(https://www.apachefriends.org/index.html )
・ダウンロード後、OKボタンをひたすら押してインストール
Codeigniter
・公式ページよりダウンロード(https://codeigniter.com/
)して解凍。ファイル名を【codeigniter】にする。
・XAMMPにあるhtdocsフォルダに【codeigniter】を配置。デフォルトのままであれば【C:\xampp\htdocs】が配置パス。
起動手順
1. XAMMPのコントロールパネル起動して、Apacheを起動
2. 以下のURLを入力して起動を確認
3. Hello!Worldを書く
codeigniter内にある以下のPHPファイルを編集して、以下の箇所にHello Worldを追加
application/controllers/Welcome.php
Welcome.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Welcome extends CI_Controller {
/**
* Index Page for this controller.
*
* Maps to the following URL
* http://example.com/index.php/welcome
* - or -
* http://example.com/index.php/welcome/index
* - or -
* Since this controller is set as the default controller in
* config/routes.php, it's displayed at http://example.com/
*
* So any other public methods not prefixed with an underscore will
* map to /index.php/welcome/<method_name>
* @see https://codeigniter.com/user_guide/general/urls.html
*/
public function index()
{
echo '<p>Hello World</p>'; // here
$this->load->view('welcome_message');
}
}