PHP Installation
Δημοσιευμένα 2024-05-17 07:09:40
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.
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:
Αναζήτηση
Κατηγορίες
- Art
- Causes
- Crafts
- Dance
- Drinks
- Film
- Fitness
- Food
- Παιχνίδια
- Gardening
- Health
- Κεντρική Σελίδα
- Literature
- Music
- Networking
- άλλο
- Party
- Religion
- Shopping
- Sports
- Theater
- Wellness
Διαβάζω περισσότερα
PHP Magic Constants
PHP Predefined Constants
PHP has nine predefined constants that change value depending on where...
PHP Access Arrays
Access Array Item
To access an array item, you can refer to the index number for indexed arrays,...
PHP - Slicing Strings
Slicing
You can return a range of characters by using the substr() function.
Specify...
PHP Delete Array Items
Remove Array Item
To remove an existing item from an array, you can use...
PHP Strings
A string is a sequence of characters, like "Hello world!".
Strings
Strings in PHP are...