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>
No release notes
This repository does not have an EULA
Actions
Go to TurboScript