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 - Slicing Strings
Slicing You can return a range of characters by using the substr() function. Specify...
بواسطة PHP Tutorial 2024-05-17 07:31:23 1 8كيلو بايت
أخرى
PHP Global Variables - Superglobals
Superglobals were introduced in PHP 4.1.0, and are built-in variables that are always available...
بواسطة PHP Tutorial 2024-05-17 08:08:10 0 10كيلو بايت
أخرى
PHP Magic Constants
PHP Predefined Constants PHP has nine predefined constants that change value depending on where...
بواسطة PHP Tutorial 2024-05-17 07:40:16 0 5كيلو بايت
أخرى
PHP Functions
The real power of PHP comes from its functions. PHP has more than 1000 built-in functions, and...
بواسطة PHP Tutorial 2024-05-17 07:53:06 0 4كيلو بايت
أخرى
PHP Indexed Arrays
PHP Indexed Arrays In indexed arrays each item has an index number. By default, the first item...
بواسطة PHP Tutorial 2024-05-17 08:00:38 0 5كيلو بايت
Sociallez https://sociallez.com