Your first PHP-enabled page!Our PHP web hosting is ideal for hosting PHP -as it is quick, reliable, and robust. We always employ the latest, stable version of PHP available.
PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML.
Please visit our homepage to find out what else comes with your PHP web hosting package. Both hosting plans support PHP -latest, stable PHP version!
Want to Link to this page?
|
Payment Methods we Accept:
Quailty Web Hosting since 1998!
Your first PHP-enabled pageCreate a file named hello.php and put it in your web server's root directory (DOCUMENT_ROOT) with the following content:
Note that this is not like a CGI script. The file does not need to be executable or special in any way. Think of it as a normal HTML file which happens to have a set of special tags available to you that do a lot of interesting things. This program is extremely simple and you really did not need to use PHP to create a page like this. All it does is display: Hello World using the PHP echo() statement. If you tried this example and it did not output anything, it prompted for download, or you see the whole file as text, chances are that the server you are on does not have PHP enabled. Ask your administrator to enable it for you using the Installation chapter of the manual. If you are developing locally, also read the installation chapter to make sure everything is configured properly. If the problems persist, do not hesitate to use one of the many PHP support options. The point of the example is to show the special PHP tag format. In this example we used <?php to indicate the start of a PHP tag. Then we put the PHP statement and left PHP mode by adding the closing tag, ?>. You may jump in and out of PHP mode in an HTML file like this all you want. For more details, read the manual section on basic PHP syntax.
Now that you have successfully created a working PHP script, it is time to create the most famous PHP script! Make a call to the phpinfo() function and you will see a lot of useful information about your system and setup such as available predefined variables, loaded PHP modules, and configuration settings. Take some time and review this important information.
|

