fix(guide): Fix directory structure

This commit is contained in:
Bouncey
2018-10-19 10:59:50 +01:00
committed by Stuart Taylor
parent 564012a7eb
commit b1a785c87d
62 changed files with 54 additions and 717 deletions

View File

@ -13,7 +13,7 @@ All PHP files are saved by the extension ` .php `. PHP scripts can be added anyw
To print any statement in PHP we use ` echo ` command.
#### Code sample
```
```php
<!DOCTYPE html>
<html>
<body>
@ -31,7 +31,7 @@ echo "Hello World!";
### Declaring Variables
We declare variables in PHP by adding dollar `$` sign before them.
```
```php
<?php
$x = 5;
echo $x;
@ -41,14 +41,14 @@ echo $x;
### Comments in PHP
To write a single line comment in PHP we put hashtag `#` or by putting `//` before the comment.
```
```php
<?php
# This is a single line comment
// This is also a single line comment
?>
```
To write a double line comment we start the comment with `/*` and end with `*/`.
```
```php
<?php
/* This is a
Double line comment. */
@ -57,7 +57,7 @@ Double line comment. */
We can also comment out some parts of the code line.
#### Code Sample
```
```php
<!DOCTYPE html>
<html>
<body>