Tag: web server

  • PHP from the Command Line

    Reading Time: < 1 minuteRecently I learned that PHP has a built in server. You don’t need xampp or any of the other solutions. All you need is terminal open, have the current directory be the one with the PHP files you want to serve and type: “php -S localhost:8000” This might sound obvious to…