UbuntuでPHP

PHPでhello, world。
環境はUbuntu12.04。

まずはPHPをインストール。

> sudo apt-get install php5

apacheも入ったようなのでブラウザでhttp://localhost/にアクセス。

It works!

This is the default web page for this server.

The web server software is running but no content has been added, yet.

と表示された。

[hello.php]

<?php
echo"hello, world";
?>
このファイルを/var/www/hello.phpに保存。(root権限が必要。)

ブラウザでhttp://localhost/hello.phpにアクセス。

hello, world
無事表示された。