Skip to content

Commit da6cc03

Browse files
committed
Fixed port in url to browser PHP hello world app
1 parent 7609556 commit da6cc03

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

php/lesson1/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ $ php -S 0.0.0.0:8080
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:8090/` and you should see:
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:
7979

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

0 commit comments

Comments
 (0)