1
0
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:
Adam
2013-08-02 09:40:22 -07:00
parent 906c7164d0
commit 18a5e58b16
2 changed files with 3 additions and 250 deletions

View File

@@ -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