[PHP-users 10541] はじめまして。

Yoshiaki Sato php-users@php.gr.jp
Thu, 03 Oct 2002 23:45:30 +0900


はじめまして。
初参加のsatoです。
今回、「はじめてのPHPプログラミング」という本を購入しました。
しかし、いきなりトラブル?になりうまく動作してくれません。
どなたか同じ経験をした方がいたら、対処方法を教えて頂けますか?

=環境は=
OS:WIN2000 PRO
PHP:PHP-Ver4.1.2
Apache:Apache-Ver1.3.24
MySQL:mysql-Ver3.23.49
IE:IE-Ver5

です。
インストール後の動作確認をしてみましたが、特におかしい感じは
ありませんでした。
実際に簡単なプログラムを入力して見た結果IEでの表示が、エラー?
表示された下に表示されます。

入力したプログラムは、

--------------------------------
<html>
<head>
<meta http-equiv="Content-Language" content="ja">
<meta http-equiv="Content-Type" content="text/html; charset=shift_jis">
<title>現在時刻を表示します</title>
</head>
<body>
<?php
  $nowdate = getdate();
?>
<p>現在時刻:<? printf("%04d/%02d/%02d %02d:%02d:%02d",$nowdate[year],
$nowdate[mon],$nowdate[mday],$nowdate[hours],$nowdate[minutes],
$nowdate[seconds]); ?></p>
</body>
</html>
----------------------------------
そしてIEで表示すると、
----------------------------------
現在時刻:
Warning: Use of undefined constant year - assumed 'year' in c:\program 
files\apache group\apache\htdocs\sample\1-3-2.php on line 11

Warning: Use of undefined constant mon - assumed 'mon' in c:\program 
files\apache group\apache\htdocs\sample\1-3-2.php on line 12

Warning: Use of undefined constant mday - assumed 'mday' in c:\program 
files\apache group\apache\htdocs\sample\1-3-2.php on line 12

Warning: Use of undefined constant hours - assumed 'hours' in c:\program 
files\apache group\apache\htdocs\sample\1-3-2.php on line 12

Warning: Use of undefined constant minutes - assumed 'minutes' in c:
\program files\apache group\apache\htdocs\sample\1-3-2.php on line 12

Warning: Use of undefined constant seconds - assumed 'seconds' in c:
\program files\apache group\apache\htdocs\sample\1-3-2.php on line 13
2002/10/03 23:43:37
-----------------------------------
と出てきます(汗

原因は分からなくて困っています。かなり初心者の質問だと分かっているのです
が
どなたか原因が分かりそうな方いましたらよろしくお願い致します。