From 022ffb21b26545a6cb8e4d9f5c8c7d40b20525e8 Mon Sep 17 00:00:00 2001 From: Dhiraj Kanchan <14177457+dhirajkanchan@users.noreply.github.com> Date: Wed, 12 Dec 2018 21:37:07 +1100 Subject: [PATCH] Fix syntax to use equal to operator instead of assignment operator. (#24467) Fix if statement to use Double equals (==) instead of Single equal (=) which would overwrite the value of $_GET['name'] variable. --- guide/english/php/conditionals/index.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/guide/english/php/conditionals/index.md b/guide/english/php/conditionals/index.md index 25c740f18e..d503b22aa4 100644 --- a/guide/english/php/conditionals/index.md +++ b/guide/english/php/conditionals/index.md @@ -7,25 +7,25 @@ Conditionals in PHP are written using the `if`, `elseif`, `else` syntax. Using c ### If ```PHP