NW

PHP開発環境構築(Hello Worldまで)

Making PHP Development Environment to run “Hello World”

ローカル環境で、ハローワールドを動かすために、色々とやりました。

I’ve done something to run “Hello World” program on my local computer environment.

自分用のメモに近いですが、PHPでプログラミングをしていましたが、php.iniか何かを書き換えたためか、
HTMLから呼び出したPHPファイルが、XAMPPを動かした、ローカルホスト上で上手く表示されなくなりました。

It’s kind of a memo for myself, but I’ve been programming with PHP and the PHP file calling from the HTML file hasn’t been able to indicate by XAMPP on localhost,
because of I’ve overwritten something on php.ini or anything else.

この際、丁度良いと思い、次の事をしました。
I thought it’s a nice time to do the next thing.

XAMPPを再インストール

Re-installing XAMPP

php.iniの設定は、次のリンク先を参考にしました。
About the php.ini settings, I reffered to the next website.

https://www.adminweb.jp/xampp/php/index2.html

ちなみに、php.iniの場所は、次の通りです。
By the way, php.ini ‘s place is like the following ones.

その通りにやって、XAMPPを動かしても、次の事をやっても、
ローカルホスト上の、HTMLに埋め込まれたPHPの部分と、HTMLから呼び出したPHPの部分が、真っ白になっていました。
Doing the things above and run XAMPP, the part of the PHP embedded on the HTML and the part of the PHP called from the PHP on localhost, has white out.


HTMLのPHP部分が真っ白くなるのを防ぐ方法

How to prevent from being White Out on the HTML’s PHP Part




1. 適当に、htdocsのdashboard配下にフォルダーを作成
1. Make a proper folder in the “htdocs” under the “dashboard”.



C:\xampp\htdocs\dashboard\test

ちなみに、動かしたプログラムは、次の通りです。

By the way, the run program is on the next.

hello.html

<html>
<head>
<title>Hello</title>
</head>
<body>
<?php print ‘Hello World’; ?>
</body>
</html>

hello2.html

<html>
<head>
<title>Hello</title>
</head>
<body>
<?php include (“hello.php”); ?>
</body>
</html>

hello.php

<?
print ‘Hello World’;
?>

なので、次のリンクのhttpd.confの設定を試したら、キチンと表示できました。

So, I’ve tried to change the “httpd.conf” settings below, it worked.

https://qiita.com/non0311/items/1114f080603d9007b1c4

httpd.confの場所は、次のリンクを参照しました。

I’ve reffered the next website in the next about the place of “httpd.conf”

https://pgmemo.tokyo/data/archives/1104.html

~動作結果~
~Results~

hello.html

hello2.html

hello.php