Go to php.net and dowload the lastest version for windows. Install it and if you have IIS installed put your php files into your wwwroot folder and run them by calling them through the server.
Like:
http://localhost/yourfile.
You might need to configure your IIS settings to handle php, but usually the installer does.
Main Topics
Browse All Topics





by: Jase-CoderPosted on 2004-06-08 at 07:24:43ID: 11260231
ok,
Since you want to compile I assume you are using *nix.
Download PHP from the site.
login as root and use a terminal
now unzip the package. if you get the tar.gz do the following
gunzip -d "php.tar.gz"
tar -xfv "php.tar"
go into the new php dir and type the following
./configure - -with-mysql - -with-apxs
make
make install
then that should install the php
the ./configure section of the installation will tell you if you need to install any other packages.
Also you can used PHP without being online.
where i have put - <space> - ie - -, when your installing dont include the space between the "-" so, do -- , which is to hyphens together.
If you were talking about installing on windows, you'll be able to download the binary and it requres some registry tweaking.
good luck with the installtion and learning the language.
-Jason