|
How to use PHP scripts:
- In order to use embedded into your HTML files PHP scripts, you just need to make sure a file is called *.php, and it will automatically be treated as a PHP script, and parsed by the server before being sent out to client.
- Alternatively, you can set up your own extensions, using Addtype directive in an
.htaccess file in the respective directory. A MIME type, corresponding to PHP scripts is application/x-httpd-php.
- So, in order to have all your *.p files treated as PHP scripts, you would add the following line to
.htaccess file in the respective directory:
Addtype application/x-httpd-php .p
More information on PHP and scripting with it available at www.php.net.
Current PHP version, running at www.binary.net is 4.3.10. Please contact support@binary.net if you have any further questions . Unfortunately, though, our limited resources will not allow us to help you in troubleshooting potential problems with your PHP scripts.
|