From ec82614b46716a02ada6325aaf4ba27d4a49c256 Mon Sep 17 00:00:00 2001 From: "Jesus M. Castagnetto" Date: Wed, 1 Nov 2000 23:33:42 +0000 Subject: [PATCH] Commented out the incorrect phrase that Hojtsy noticed. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@35026 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/basic-syntax.xml | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/language/basic-syntax.xml b/language/basic-syntax.xml index d2f4f02d38..904b1e09dc 100644 --- a/language/basic-syntax.xml +++ b/language/basic-syntax.xml @@ -12,26 +12,29 @@ Ways of escaping from HTML -1. <? echo ("this is the simplest, an SGML processing instruction\n"); ?> +1. <? echo ("this is the simplest, an SGML processing instruction\n"); ?> -2. <?php echo("if you want to serve XML documents, do like this\n"); ?> +2. <?php echo("if you want to serve XML documents, do like this\n"); ?> -3. <script language="php"> +3. <script language="php"> echo ("some editors (like FrontPage) don't like processing instructions"); - </script> + </script> -4. <% echo ("You may optionally use ASP-style tags"); %> - <%= $variable; # This is a shortcut for "<%echo .." %> +4. <% echo ("You may optionally use ASP-style tags"); %> + <%= $variable; # This is a shortcut for "<%echo .." %> - + + The first way is only available if short tags have been - enabled. This can be done via the short_tags - function, by enabling the short_open_tag configuration - setting in the PHP config file, or by compiling PHP with the - --enable-short-tags option to configure. + enabled. This can be done + + by enabling the short_open_tag + configuration setting in the PHP config file, or by compiling PHP with the + --enable-short-tags option to configure. + The fourth way is only available if ASP-style tags have been