0
How do i create a server side in PHP?
website
2 Antworten
0
First things first
--> Setting Up a Local Web Server <--
PHP script execute on a web server running PHP. So before you start writing any PHP program you need the following program installed on your computer.
- The Apache Web server
- The PHP engine
- The MySQL database server
You can either install them individually or choose a pre-configured package for your operating system like Linux and Windows. Popular pre-configured package is XAMPP.
--> Creating Your First PHP Script <--
Now that you have successfully installed XAMPP on your computer. Then you can create a very simple PHP script that displays the text "Hello, world!" in the browser window.
Here you can find more information:
https://www.guru99.com/php-tutorials.html
0
thanks so much! I appreciate