skip to Main Content

i know there are many similar questions but tbh none of them really fit.

I have no problems running the php part of my Webpage and everything works fine. Now im asking if there is a way to run my webpage including the php part without using having to start apache and typing in localhost.

I just wanna open up my html document with a browser and display it, nothing else. However then, the php code isnt really executed but its necessary for me as it displays an essential table with data. And no I cant use javascript for a very specific reason. I have to use php for my project but its a bit inconvenient having to start apache everytime and i just want to open up the document with firefox for example.

2

Answers


  1. Unfortunately, this will not be possible as PHP is a server side language. As such, you will have to have an application to serve the content. With HTML, you are able to open it directly and display as the client (Browser) is able to read it directly. Browsers do not read PHP – when the server compiles the PHP, it is only sending the DOM (HTML, etc.) to the browser.

    Login or Signup to reply.
  2. Like other people said, PHP is a server side language so you need to run a server on your machine.
    But maybe you could try using small local server like the Symfony Local Server

    It should be faster to start than apache.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search