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 Installation
What Do I Need? To start using PHP, you can: Find a web host with PHP and MySQL support...
От PHP Tutorial 2024-05-17 07:09:40 0 5Кб
Другое
PHP Sorting Arrays
The elements in an array can be sorted in alphabetical or numerical order, descending or...
От PHP Tutorial 2024-05-17 08:06:46 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Кб
Другое
تطورات التعلم الآلي وتأثيرها على مستقبل العمل
مقدمة: في ظل التطورات السريعة للتكنولوجيا والابتكار، أصبح التعلم الآلي...
От MOHAMED ATTALLAH 2024-05-14 13:56:58 0 7Кб
Другое
PHP for Loop
The for loop - Loops through a block of code a specified number of times. The PHP...
От PHP Tutorial 2024-05-17 07:49:43 0 4Кб
Sociallez https://sociallez.com