PHP Installation

0
5χλμ.

What Do I Need?

To start using PHP, you can:

  • Find a web host with PHP and MySQL support
  • Install a web server on your own PC, and then install PHP and MySQL

Use a Web Host With PHP Support

If your server has activated support for PHP you do not need to do anything.

Just create some .php files, place them in your web directory, and the server will automatically parse them for you.

You do not need to compile anything or install any extra tools.

Because PHP is free, most web hosts offer PHP support.


Set Up PHP on Your Own PC

However, if your server does not support PHP, you must:

  • install a web server
  • install PHP
  • install a database, such as MySQL

The official PHP website (PHP.net) has installation instructions for PHP: http://php.net/manual/en/install.php


PHP Online Compiler / Editor

With w3schools' online PHP compiler, you can edit PHP code, and view the result in your browser.

<?php
$txt = "PHP";
echo "I love $txt!";
?>
I love PHP!
Try it Yourself »

Click on the "Try it Yourself" button to see how it works.


PHP Version

To check your php version you can use the phpversion() function:

ExampleGet your own PHP Server

Display the PHP version:

echo phpversion();
 
 

 

 

Αναζήτηση
Κατηγορίες
Διαβάζω περισσότερα
άλλο
PHP Multidimensional Arrays
In the previous pages, we have described arrays that are a single list of key/value pairs....
από PHP Tutorial 2024-05-17 08:07:20 0 8χλμ.
άλλο
PHP Create Arrays
Create Array You can create arrays by using the array() function: ExampleGet your...
από PHP Tutorial 2024-05-17 08:01:55 0 8χλμ.
άλλο
PHP if...else Statements
PHP - The if...else Statement The if...else statement executes some code if a...
από PHP Tutorial 2024-05-17 07:46:12 0 4χλμ.
άλλο
PHP if Statements
Conditional statements are used to perform different actions based on different conditions....
από PHP Tutorial 2024-05-17 07:45:23 0 4χλμ.
άλλο
PHP Multiline Comments
Multi-line Comments Multi-line comments start with /* and end with */. Any text...
από PHP Tutorial 2024-05-17 07:15:48 0 6χλμ.
Sociallez https://sociallez.com