React.js logoNext.js logoNest.js logoReact Native logoExpo logoElectron.js logoViteJsHTML logoCSS logoJavascript logoTypescript logoNode.js logoPython logoRust logogo-langPHP logoJest logoMocha logoJasmine logoMongoDb logoPostgresql logoRedis logoNginx logoSass logoDocker logokubernetes logoGithub logoVisual Studio Code logoPostman logoNPM logoCargo logoUbuntu logoAWS logoGoogle Cloud
PHP logo
PHPA popular general-purpose scripting language that is especially suited to web development.

Fast, flexible and pragmatic, PHP powers everything from your blog to the most popular websites in the world.

What can PHP do?

Anything. PHP is mainly focused on server-side scripting, so you can do anything any other CGI program can do, such as collect form data, generate dynamic page content, or send and receive cookies. But PHP can do much more.

There are two main areas where PHP scripts are used:

Server-side scripting.

This is the most traditional and main target field for PHP. You need three things to make this work: the PHP parser (CGI or server module), a web server and a web browser. You need to run the web server, with a connected PHP installation. You can access the PHP program output with a web browser, viewing the PHP page through the server. All these can run on your home machine if you are just experimenting with PHP programming. See the installation instructions section for more information.

Command line scripting.

You can make a PHP script to run it without any server or browser. You only need the PHP parser to use it this way. This type of usage is ideal for scripts regularly executed using cron (on *nix or Linux) or Task Scheduler (on Windows). These scripts can also be used for simple text processing tasks. See the section about Command line usage of PHP for more information.

Software in the same category
HTML logoCSS logoJavascript logoTypescript logoNode.js logoPython logoRust logogo-lang