Skip to content

Commit 2cc1fde

Browse files
committed
Fixed typos and Improved wording
1 parent ed367c5 commit 2cc1fde

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

php/lesson1/tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Hello World
6060

6161
## How to the output in the browser?
6262

63-
Seeing it on the Command Line is great, but what about the browser? We will need to get a WebServer running, the easiest way is to use the buil-in PHP WebServer.
63+
Seeing it on the Command Line is great, but what about the browser? We will need to get a WebServer running, the easiest way is to use the built-in PHP WebServer.
6464

6565
*Note: Built-in PHP WebServer is great for Development, but **NOT** Production.*
6666

@@ -70,12 +70,12 @@ Go to the directory where you created the `index.php` file and run the following
7070
$ php -S 0.0.0.0:8080
7171
```
7272

73-
1. You are already familiar with the `php` command from before
73+
1. `php` is the same command from before, that we used to run our **php** script
7474
2. `-S` means built-in WebServer
7575
3. `0.0.0.0` is the IP that the WebServer should listen on. By using `0` it will listen on everything - fine for development
7676
4. `8080` is the port to listen on - fine for development but in production the default port is `80` and therefore not required when accessing a URL
7777

78-
Lets see the script output in the browser, in your browser (ideally **Firefox** or **Chrome**) navigate to ` http://localhost:8080/` and you should see:
78+
Lets see the script output in your web browser! In your web browser navigate to ` http://localhost:8080/` and you should see:
7979

8080
![Hello World](assets/images/helloworld.png)
8181

0 commit comments

Comments
 (0)