mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-07-31 03:50:32 +02:00
Fixed php and removed old VB file
This commit is contained in:
@@ -9,7 +9,7 @@ filename: learnphp.php
|
||||
This document describes PHP 5+.
|
||||
|
||||
```php
|
||||
<?php // PHP code must be enclosed with <?php ?> tags
|
||||
<?php // PHP code must be enclosed with <?php tags
|
||||
|
||||
// If your php file only contains PHP code, it is best practise
|
||||
// to omit the php closing tag.
|
||||
@@ -31,7 +31,8 @@ echo "World\n"; // Prints "World" with a line break
|
||||
// (all statements must end with a semicolon)
|
||||
|
||||
// Anything outside <?php tags is echoed automatically
|
||||
?>Hello World Again!
|
||||
?>
|
||||
Hello World Again!
|
||||
<?php
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user