Tengo este formulario. Cuando le doy al segundo boton listado para que cargue los datos me sale en blanco.
Algo está mal configurado, pero no logro verlo.
La idea es que vaya insertando los datos en la tabla cada vez que ingreso el nombre de una pagina web.
Con el segundo boton debería ver lo que tengo en la base de datos.
Espero haberme explicado.
Gracias
<html>
<head><title> velocidad </title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><style type="text/css">
<!--
body {
background-color: #669900;
}
.Estilo1 {
color: #CC0033;
font-weight: bold;
}
-->
</style></head>
<body>
<center><h1><strong> </strong></h1>
<h2>MENU VELOCIDAD DESCARGA WEBS </h2>
<p> </p>
<table width="84%" border="2" cellspacing="1" cellpadding="5">
<tr>
<td width="36%" height="57"><div align="center">INTRODUCCION NOMBRE PÁGINA </div></td>
<td width="64%"><form name="form1" method="post" action="veloc_descarga1.php">
<p>Nombre de la página WEB
<input type="text" name="url" >
escriba asi http://www.google.com
</p>
<p>
<input type="submit" name="Submit" value="Enviar">
</p>
<p> </p>
</form></td>
</tr>
<tr>
<td height="64">ESTADISTICAS</td>
<td><form method="post" action="veloc_descarga1.php" target=inferior>
<input type="submit" name="lista" value="LISTADO">
</form></td>
</tr>
</table>
<h1 class="Estilo1"> </h1>
<p class="Estilo1"> </p>
<p class="Estilo1"> </p>
<p class="Estilo1"> </p>
<hr>
<p> <br>
<p> </p>
</form>
</center>
</body>
</html>
-------------------------------------------------------------------------
-------------------------------------------------------------------------
<?php
$direccion=$_POST['url'];
//if(isset($_REQUEST['url'])) {
if($direccion){
echo "$direccion";
$tmicro[1]= microtime();
$q_espacios = explode(" ",$tmicro[1]);
$tiempo_[1]= $q_espacios[1]+$q_espacios[0];
$pagina=file_get_contents($direccion);
$tamanoKB= strlen($pagina)/1024;
echo $tamanoKB ."<br>";
$tiempo_micro[2] = microtime();
$q_espacios= explode(" ",$t_micro[2]);
$tiempo_[2] =$q_espacios[1] + $q_espacios[0];
$timeutilizado = number_format(($tiempo_[2] - $tiempo_[1]),2, "." ,","); //Format a number with grouped thousands
//$velocdescarga= round($tamanoKB/$timeutilizado,3);
echo 'velocidad de conexión es de: '.$velocdescarga.' Kbps <br /> Se enviarón:'.$tamanoKB.
' Kb, Tiempo utilizado: '.$timeutilizado.' Segundos <hr>';
$conexion=mysql_connect("localhost","root","1234") ;
mysql_select_db("velocidad",$conexion);
If (mysql_errno($conexion)!=0)
{ $mensaje= mysql_error($conexion);
Echo "$mensaje";
}
if(isset($_REQUEST['lista'])) {
//$dia = current date();
$query = "INSERT INTO stat_table (
Num,
fecha,
velocidad,
tamano,
Npagina
) VALUES (
'current date',
'$velocdescarga',
'$tamanoKB',
'$pagina',
);";
$result = mysql_query($query, $db);
}
}
?>