I need to compare in the table of products if the language esp and ing are filled ...
When I register the product it registers as language 1 (by).
Then the client has to register the 2 (ing) and 3 (esp).
$pdo = db_connect();
$listar = $pdo->prepare("SELECT * FROM produtos WHERE ativo = 1 AND id_produto = :cod");
$listar->bindParam(':cod', $cod);
$listar->execute();
$dados = $listar->fetch(PDO::FETCH_OBJ);
$produto = $dados->id_produto;
$idioma = $dados->idioma;
Here is the code for calling the buttons.
<tr>
<td><strong><?php echo $dados->titulo;?></strong></td>
<?php if ($dados->idioma == '2'){?>
<td><a href="painel.php?p=produtos-idiomas-cadastrar&cod=<?php echo $dados->id_produto; ?>&img=<?php echo $dados->produto_imagem; ?>"><button type="submit" class="btn btn-success"><i class="fa fa-plus"></i> Cadastrar</button></a></td>
<?php } else { ?>
<td><a href="painel.php?p=produtos-idioma-editar&cod=<?php echo $dados->id;?>"><span class="glyphicon glyphicon-pencil" aria-hidden="true" title="Editar"></span></a></td>
<?php { ?>
<?php if ($dados->idioma == '3'){ ?>
<td><a href="painel.php?p=produtos-idiomas-cadastrar&cod=<?php echo $dados->id_produto; ?>&img=<?php echo $dados->produto_imagem; ?>"><button type="submit" class="btn btn-success"><i class="fa fa-plus"></i> Cadastrar</button></a></td>
<?php } else { ?>
<td><a href="painel.php?p=produtos-idioma-editar&cod=<?php echo $dados->id;?>&idioma=3"><span class="glyphicon glyphicon-pencil" aria-hidden="true" title="Editar"></span></a></td>
<?php } ?>
</tr>
In the image I have products 603, 544, 292 that are only in Portuguese ... Product 10 is in the 3 languages (1-by, 2-ing and 3-esp) ...
If the product is registered in language 2 and 3, I want the edit button to appear. If the product is not registered in language 2 and 3, the register button appears.