From f62f377016321cdcefe2079ae5cc0a5693420e48 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Tue, 8 Jan 2019 15:06:57 -0500 Subject: [PATCH] fixes --- PHP.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/PHP.md b/PHP.md index d43380e..8f62635 100644 --- a/PHP.md +++ b/PHP.md @@ -178,9 +178,9 @@ Some kinds of string interpolation work: 2"; } elseif($x < 2){ - echo "x > 2"; + echo "x < 2"; } else{ echo "x == 2"; @@ -216,7 +216,7 @@ If you have html and don't want to have lines that look like ``, you c 2): ?> x > 2 - + x < 2 x == 2