0
0

[オレオレ01] PHPでHelloWorld

Last updated at Posted at 2023-12-29

目的

まずは HelloWorld から!

目次

  1. 前提
  2. index.phpファイルを作る
  3. コードを書く

前提

index.php ファイルを作る

$ cd /var/www/html
$ sudo mkdir stampede
$ cd stampede
$ sudo touch index.php

コードを書く

$ sudo vi index.php
index.php
<?php
echo 'HelloWorld';
(ZZで保存)

// エスケープキーが効かなくてviのモード切替ができない場合は、
// Ctrl + c でモードを切り替えてから ZZ で保存する


次の記事
[オレオレ02] シンボリックリンク
前の記事
オレオレフレームワークの作り方

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0