Hola, tengo un codigo pequeño donde tengo que ingresar una hora y fecha y dandole a un boton me tiene que mostrar la fecha y hora en la misma pagina, y que al hacer esto varias veces esos datos se vayan mostrando uno debajo del otro, osea que se vayan acumulando para usarlos despues y poder verlos en pantalla con la opcion de seguir agregando. Muchisimas gracias y que esten todos muy bien.-
<?php
session_start();
?>
<table width="419" height="191" border="1">
<tr>
<td>
<form name="agregar">
<input type="text" method="get" name="hora" size="6">
<input type="text" method="get" name="fecha" size="8">
<input type="button" name="btnhora" value="Agregar" onclick="document.agregar.submit()")
</td></form>
<td><table width="200" border="1">
</table></td>
</tr>
</table>
<?php
$hora = $_GET['hora'];
$fecha = $_GET['fecha'];
echo $fecha;
echo $hora
?>.