I want to create polls on my site plus I have a problem to relate two tables. The questions are being repeated.
Table pergunta
Question_id = 1: What do you think of Samsung s8?
Question_id = 2: What do you think of the iPhone 8?
Table opção
question_id = 1: id_option = 1: good
question_id = 1: id_option = 2: bad
question_id = 1: id_option = 3: lousy
question_id = 2: id_option = 4: good
question_id = 2: id_option = 5: bad
question_id = 2: id_option = 6: very bad
How do I display:
o que você acha do Samsung s8?
bom
ruim
péssimo
o que você acha do iPhone 8?
bom
ruim
péssimo
How are you displaying:
o que você acha do Samsung s8
bom
o que você acha do Samsung s8
ruim
o que você acha do Samsung s8
péssimo
o que você acha do iPhone 8?
bom
o que você acha do iPhone 8?
ruim
o que você acha do iPhone 8?
péssimo
My code
$id_categoria = $_GET['id'];
$tabela = duas_tabelas($id_categoria, $mysqli);
foreach($tabela as $resultado){
echo $resultado[1]."";
echo $resultado[2]."";
};
In the function page (where the functions are).
function duas_tabelas($id_categoria, $mysqli) {
if (isset($id_categoria)) {
$stmt = $mysqli->prepare("faz a consulta");
$stmt->bind_param('i', $id_categoria);
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($pergunta, $opcao);
while ($stmt->fetch()) {
$resultado = array($pergunta, $opcao);
$resultss[] = $resultado;
};
return $resultss;
};
};
I'm using INNER JOIN
to relate, then I use while
to mount an array . and on the display page I foreach
to manipulate the array that comes from function
. How do I resolve this issue?