hola amigos , aquí otro problema , como actualizar una pagina la imagen y se redireccione a otra pagina este es el código :
<?php
include "Datos/conexion.php";
?>
<?php
require '../../funciones/funciones.php';
if(! haIniciadoSesion() || ! esAdmin())
{
header("Location: ../index.html");
}
conectar();
desconectar();
?>
<?php
$con=mysqli_connect($server,$username,$password,$db);
$re = mysqli_query($con,"select * from alumnos where id = ".$_GET['Foto'].";");
while ($f=mysqli_fetch_array($re)){
$url=$f['imagen'];
?>
<script language="JavaScript" type="text/javascript">
var pagina="https://melcorp.com.mx/bienvenidoAdmin/Consul_Alumnos/Consulta_Alumnos.php"
function redireccionar()
{
location.href=pagina
}
setTimeout ("redireccionar()", 6000);
</script>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel=alternate media=print href="reporte.php">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<title><?php echo $f['imagen'] ?></title>
<link href="../css/bootstrap.min.css" rel="stylesheet">
<style type="text/css"><!--
body {
margin-top:100px;
margin-right:500px;
}
.image {
position: relative;
width:100%;
margin-left:500px;
margin-top:200px;
}
.boton {
position: relative;
margin-left:580px;
margin-top:10px;
}
--></style>
</head>
<body>
<div class="image">
<?php
echo
"
<img src=".$url." width=\"280\" height=\"335\" alt=\"\" />
" ?>;
</div>
<div><a href="tomarfoto/webcam.php?Tomar=<?php echo $f['id']?>" type="button" class="btn btn-primary boton"> <i class='glyphicon glyphicon-camera'></i> Tomar Foto</a></div>
</body>
</html>
<?php } ?>