Skip to content

Commit ed367c5

Browse files
committed
Fixed typos and improved summary/conclusion
1 parent da6cc03 commit ed367c5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

php/lesson1/tutorial.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ From the **PHP** [website](http://php.net/manual/en/intro-whatis.php)
2424

2525
> PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML.
2626
27-
Well what does this mean? It is very easy to build dynamic websites using **PHP** as the server-side language, which generates **html**.
27+
Well what does this mean? It is very easy to build dynamic websites using **PHP** as the server-side language, which generates **HTML**.
2828

2929
## What does PHP look like?
3030

31-
A simple help world application would look like the following:
31+
A simple Hello World application would look like the following:
3232

3333
*File: index.php*
3434
```php
@@ -49,7 +49,7 @@ On the Command Line (CLI), type:
4949
php index.php
5050
```
5151

52-
And the out will be:
52+
And the output will be:
5353

5454
```bash
5555
$ php index.php
@@ -79,6 +79,6 @@ Lets see the script output in the browser, in your browser (ideally **Firefox**
7979

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

82-
## Conclusion
82+
## Summary
8383

84-
**PHP** is very easy to learn and developer Dynamic Websites and Web Applications with.
84+
Now you should know how to create a simple **PHP** script and run it via the Command Line or via the Built-in **PHP** WebServer and see the output to the Command Line or the Browser respectively.

0 commit comments

Comments
 (0)