From 85b570730547b8ac08ea0a540674f94442f9ebab Mon Sep 17 00:00:00 2001 From: Dhiraj Kanchan <14177457+DhirajKanchan@users.noreply.github.com> Date: Sun, 11 Aug 2019 05:13:30 +0530 Subject: [PATCH] Fix if statement to use equal to operator instead of assignment operator. (#24524) Fix if statement to use Double equals (==) instead of Single equal (=) which would overwrite the value of $_GET['name'] variable. --- guide/spanish/php/conditionals/index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/guide/spanish/php/conditionals/index.md b/guide/spanish/php/conditionals/index.md index 3acf35b0e0..646b96c85d 100644 --- a/guide/spanish/php/conditionals/index.md +++ b/guide/spanish/php/conditionals/index.md @@ -10,7 +10,7 @@ Los condicionales en PHP se escriben usando la sintaxis `if` , `elseif` , `else` ```PHP