Escape characters

php
EmaMaker 2018-12-29 17:22:52 +01:00 committed by GitHub
parent 900e7cda49
commit 4e7bdd9625
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

10
escape_chars.php Normal file
View File

@ -0,0 +1,10 @@
<?php
//ESCAPE CHARACTERS IN PHP-HTML
$word = "ciao";
echo "<pre>\n" . $word . "</pre>";
echo "<pre>\n\tciao2</pre>";
?>