PHP Installation

0
5KB

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();
 
 

 

 

Rechercher
Catégories
Lire la suite
Autre
PHP Shorthand if Statements
Short Hand If To write shorter code, you can write if statements on one line....
Par PHP Tutorial 2024-05-17 07:47:03 0 4KB
Autre
PHP Comments
Comments in PHP A comment in PHP code is a line that is not executed as a part of the program....
Par PHP Tutorial 2024-05-17 07:14:49 0 6KB
Autre
PHP Casting
Sometimes you need to change a variable from one data type into another, and sometimes you want a...
Par PHP Tutorial 2024-05-17 07:38:02 0 4KB
Autre
PHP Syntax
A PHP script is executed on the server, and the plain HTML result is sent back to the browser....
Par PHP Tutorial 2024-05-17 07:10:53 0 8KB
Autre
PHP - Concatenate Strings
String Concatenation To concatenate, or combine, two strings you can use...
Par PHP Tutorial 2024-05-17 07:30:24 0 8KB
Sociallez https://sociallez.com