You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: php/lesson1/tutorial.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,11 +24,11 @@ From the **PHP** [website](http://php.net/manual/en/intro-whatis.php)
24
24
25
25
> 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.
26
26
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**.
28
28
29
29
## What does PHP look like?
30
30
31
-
A simple help world application would look like the following:
31
+
A simple Hello World application would look like the following:
32
32
33
33
*File: index.php*
34
34
```php
@@ -49,7 +49,7 @@ On the Command Line (CLI), type:
49
49
php index.php
50
50
```
51
51
52
-
And the out will be:
52
+
And the output will be:
53
53
54
54
```bash
55
55
$ php index.php
@@ -79,6 +79,6 @@ Lets see the script output in the browser, in your browser (ideally **Firefox**
79
79
80
80

81
81
82
-
## Conclusion
82
+
## Summary
83
83
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