Jump to content
Fórum Script Brasil
  • 0

Problema com IF dentro de Foreach


Lioo

Question

Olá pessoal.

Preciso fazer um tratamento dos resultados obtidos no resultado de uma consulta dependendo de seu valor

Estou tentando fazer assim:

<?php
require("config.php");

$area = 'BR -BRAZIL';
$st='A-ACTIVE';

$sql = $pdo->prepare("SELECT number,tprice,currency,emissao FROM tabela01 WHERE st = :st AND area = :area ");
   
$sql->bindValue(":st",$st,PDO::PARAM_STR);
$sql->bindValue(":area",$area,PDO::PARAM_STR);
$sql->execute();    
        
$ln = $sql->fetchAll();
$n = $sql->rowCount();

 foreach($ln as $linha)
    {
        
     if ($linha['currency'] = "A"){
         echo "FAZ O TRATAMENTO DA LINHA"; //independente do resultado sempre mostra isso
     }else{
    echo " não FAZ NADA";
     }
     
    }



Porém quando uso o if dentro do foreach(), sempre me mostra o echo "FAZ O TRATAMENTO DA LINHA", mesmo se a condição é falsa, pois retornam 50 resultados da pesquisa, mas alguns são currency = "A", outros não.

Alguma ajuda?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

O problema aí é que você não está fazendo comparação no if, você está fazendo atribuição (repare que só tem um sinal de =), logo sempre retorna true para a verificação. O correto seria:

if ($linha['currency'] == "A"){

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...