Problema al conultar ultimo registro
Publicado por David (20 intervenciones) el 09/02/2017 22:09:15
Hola Tengo una mini web que es para mostrar las fichas que se van atendiendo tipo banco, pero tengo que generar una base de datos con dos campos id y ficha_number para poder hacer la consulta en tiempo real, sin embargo estoy teniendo problemas al imprimir la variable que se supone tiene el ultimo registro de mi tabla.. el codigo es este:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
$last= $conexion->query("SELECT fichas_number FROM fichas ORDER BY fichas_number DESC LIMIT 1");
///TABLA DONDE SE DESPLIEGAN LOS REGISTROS //////////////////////////////
{
if ($last < 10)
print("<center>". "<h2 class='gray'>"."Atendiendo..." ."</h2>".
"<h1 class='text'>"."0".$last."</h1>".
"<button type='submit' method='POST' class='btn'>".Next ."</button>".
"</center>");
else
{
print("<center>". "<h2 class='gray'>"."Atendiendo..." ."</h2>".
"<h1 class='text'>".$last."</h1>".
"<button type='submit' method='POST' class='btn'>".Next ."</button>".
"</center>");
}
}
Valora esta pregunta
0