he puesto esto y si el usuario ya tiene nota muestra el mensaje ya te has evaluado hoy pero no logro conseguir que me muestre el formulario si el usuario aun no se ha evaluado
Código PHP:
Ver original<?php
$usuario = $_COOKIE['loggedin'];
if (!isset($_COOKIE['loggedin'])) die("<center><img src='images/error.png'><br><div id='miclase'>No te has identificado, <a href=index.html>click acá</a> para iniciar sesión.</center>");
include ("config.php");
echo "Usuario: <input type='text' name='matricula' size='8' readonly value='$usuario'> ";
echo "Fecha ";
echo $fecha;
echo "<br><br>";
$queEmp = "SELECT * FROM notas_cues";
if ($totEmp> 0) {
$not = $rowEmp['nota'];
$user = $rowEmp['usuario'];
$fech = $rowEmp['fecha'];
if ($user == $usuario && $fech == $fecha){
echo "Ya Te Evaluaste Hoy tu nota es $not <br><br>";
echo "<a href='form.php'>Volver</a>";
}
else{
$queEmp = "SELECT * FROM cuestionario";
echo "<form action='resultado.php' method='post' name='formulario'>";
echo "<table>";
if ($totEmp> 0) {
$corre1 = $rowEmp['corre1'];
$corre2 = $rowEmp['corre2'];
$corre3 = $rowEmp['corre3'];
$corre4 = $rowEmp['corre4'];
echo "<strong>".$rowEmp['pregunta1']."</strong><br>";
echo "<tr><td><input type='radio' name='Res1' value='1'>";
echo "".$rowEmp['1res1']."<br>";
echo "<input type='radio' name='Res1' value='2'>";
echo "".$rowEmp['1res2']."<br>";
echo "<input type='radio' name='Res1' value='3'>";
echo "".$rowEmp['1res3']."<br>";
echo "<input type='radio' name='Res1' value='4'>";
echo "".$rowEmp['1res4']."<br></td></tr>";
echo "</table><br>";
echo "<table>";
echo "<strong>".$rowEmp['pregunta2']."</strong><br>";
echo "<tr><td><input type='radio' name='Res2' value='1'>";
echo "".$rowEmp['2res1']."<br>";
echo "<input type='radio' name='Res2' value='2'>";
echo "".$rowEmp['2res2']."<br>";
echo "<input type='radio' name='Res2' value='3'>";
echo "".$rowEmp['2res3']."<br>";
echo "<input type='radio' name='Res2' value='4'>";
echo "".$rowEmp['2res4']."<br></td></tr>";
echo "</table><br>";
echo "<br>";
echo "<table>";
echo "<strong>".$rowEmp['pregunta3']."</strong><br>";
echo "<tr><td><input type='radio' name='Res3' value='1'>";
echo "".$rowEmp['3res1']."<br>";
echo "<input type='radio' name='Res3' value='2'>";
echo "".$rowEmp['3res2']."<br>";
echo "<input type='radio' name='Res3' value='3'>";
echo "".$rowEmp['3res3']."<br>";
echo "<input type='radio' name='Res3' value='4'>";
echo "".$rowEmp['3res4']."<br></td></tr>";
echo "</table><br>";
}
}
echo "<input type='image' src='images/nota.png' />";
echo "</form>";
}
}
}
}
?>