I'm learning PHP , on the page this appears:
"Notice: Undefined variable: Tasks in C: \ xampp \ htdocs \ index.php on line 42."
Código PHP:
<?php
$bdServidor = '127.0.0.1';
$bdUsuario = 'felipe';
$bdSenha = 'testeteste123' ;
$bdbanco = 'tarefas' ;
$conexao = mysqli_connect($bdServidor,$bdUsuario,$bdSenha,$bdbanco);
if (mysqli_connect_errno($conexao))
{
echo "Problemas para conectar no banco. Verifique os dados!";
}
else
{
echo "tudo ocorreu bem";
}
function busca_tarefas($conexao)
{
$sqlBusca = 'SELECT * FROM tarefas';
$resultado = mysql_query($conexao,$sqlBusca);
$tarefas= array();
while($tarefa = mysqli_fetch_assoc($resultado))
{
$tarefas[] = $tarefa;
}
return $tarefas;
}
?>
Código HTML:
<?php
session_start();
include "tarefas.php";
?>
<!DOCTYPE html>
<html>
<head>
<title>Tarefas</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<center><form method="GET">
<fieldset id="felipe">
<legend>Nova tarefa</legend>
<label>Nome
<input class="theme" type="text" name="nome">
</label><br>
<label>descrição
<textarea class="themee" name="descricao"></textarea>
</label><br>
<label>Prazo
<input class="theme" type="text" name="prioridade">
</label><br>
<fieldset id="felipee">
<legend>Prioridade</legend>
<label>
<input type="radio" name="alta">Alta
<input type="radio" name="media">Média
<input type="radio" name="baixa">Baixa
</label><br>
</fieldset><br>
<input type="submit" name="enviar">
</fieldset>
</form></center>
<table border='1px'>
<tr>
<td>Nome</td>
<td>descricao</td>
<td>prioridade</td>
</tr>
<tr>
<td><?php print_r($tarefas)
?></td>
</tr>
</table>
</body>
</html>
How can I fix this error?