开发者

Parsing PHP content in HTML without Webserver

I want to create a simple webiste with only html pages. I am now including Header, sidebar, footer in every file, which is redundant. So, while looking 开发者_StackOverflowfor solution, I found <?php include, can help me. But my browser is not parsing php content. How can I make it parse php files in html?

Thank you


Since your goal is to create a simple HTML website, with static pages I don't think PHP is the best way to go.

You have two options:

Run PHP on your local computer to pre-process the files:

If you install PHP-cli (command line client), you can use it to process your PHP static pages. Redirect its output to a file and you have your desired output:

php-cli index.php > index.html

Use nanoc (ruby-based) to build your static website:

If you don't have a webserver with PHP enabled, I assume you do not have PHP as a requirement but rather found about <?php include('file') ?> while studying HTML.

With this in mind, I suggest you check out nanoc. It's a tool what uses ruby to help creating static HTML webpages, by providing ways to define a layout (what you're doing with PHP's include) and many other features.

It's quite simple to use and produces static HTML files that you can upload to any server or open with your browser directly and still enables many powerful features while developing your website.


You need to have PHP installed on the server that is running the website. You need to make sure you are naming your files with a valid php extension, e.g. index.php. Can you give us a link to your website where the issue is occurring?


When you enter www.example.com/test.php in the addressbar,the browser contacts the webserver at www.example.com and requests for the file /test.php. Now depending on how your server is configured, you web server will detect the type of the file (usually using the extension). In this case (since the extension is .php), the webserver will detect that the file is a PHP script and will invoke the PHP interpreter. The PHP interpreter will execute the script and generate HTML which is passed on to the web server. Now the web server will return the HTML to the browser.

  • PHP is a mainly (Yes, it is possible to run PHP within browser) a server side language
  • This means PHP is not executed in you browser, but on your server
  • Therefore, you need to have PHP configured correctly on your server to see the correct output
  • Even if you manage to configure PHP as client side language on your system, remember there is not even < 1% change of your user's browser supporting it.
  • You can only have webpages, and not website, without a web server

A website (also spelled Web site) is a collection of related web pages, images, videos or other digital assets that are addressed relative to a common Uniform Resource Locator (URL), often consisting of only the domain name (or, in rare cases, the IP address) and the root path ('/') in an Internet Protocol-based network. A web site is hosted on at least one web server, accessible via a network such as the Internet or a private local area network.


You need to have a web server set up with PHP running on it. PHP is an acronym for "PHP: Hypertext Preprocessor". PHP is processed on the server, rendered into HTML content, then sent out of a web browser to be viewed, but no web browser has the ability to processor PHP on its own.

Here are some resources to get you started:

PHP: What do I need?

Your First PHP-enabled Page


Your browser cannot interpret / parse php files.

If you want to test your site locally, you will need to install a local server like WampServer for windows or apache and php in linux.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜