From e1c9a647df0378d2065052a2911a94c6276f2add Mon Sep 17 00:00:00 2001 From: Dhiraj Kanchan <14177457+DhirajKanchan@users.noreply.github.com> Date: Wed, 14 Aug 2019 20:58:23 +0530 Subject: [PATCH] Fix if statement to use equal to operator instead of assignment operator. (#24520) Fix if statement to use Double equals (==) instead of Single equal (=) which would overwrite the value of $_GET['name'] variable. --- guide/portuguese/php/conditionals/index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/guide/portuguese/php/conditionals/index.md b/guide/portuguese/php/conditionals/index.md index 183678cb79..15ca7736b4 100644 --- a/guide/portuguese/php/conditionals/index.md +++ b/guide/portuguese/php/conditionals/index.md @@ -10,7 +10,7 @@ Condicionais em PHP são escritos usando o `if` , `elseif` , `else` sintaxe. O u ```PHP