PHP's icon

PHP 5.6.14

A server-side scripting language designed for web development.

Description

PHP is a popular general-purpose scripting language that is especially suited to web development.

Readme

Getting started

Here are some steps to get started with a simple PHP page:

# run php with a web server and browser of your choice

> turbo run php/php,web-server,browser


# open notepad

(123) > notepad


# save the content below as .php file, hello.php

<html>

<head>

<title>PHP Test</title>

</head>

<body>

<?php echo '<p>Hello World</p>'; ?>

</body>

</html>

Save the .php file in the DOCUMENT ROOT of your web server, then visit http://yoursite/hello.php via the browser you included in the container.

If the file is parsed correctly, you should see a page with the following code:

<html>

<head>

<title>PHP Test</title>

</head>

<body>

<p>Hello World</p>

</body>

</html>


Release Notes

No release notes


EULA

  • Actions

    Go to TurboScript
  • Dependencies
    Microsoft Visual C++ Redistributable 2012
  • Used By
    wordpress wordpress-nightly drupal
  • Website
    Developer: php.net
  • Current
    5.6.14 updated 9 years ago
  • Details
    Updated: January 11, 2019
    Created: October 24, 2014