Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<!

DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Mi Aplicación</title>

</head>
<body>
<h1>Mi Aplicación</h1>
<div class="container">
<div class="button-container">
<form action="frmXc.php" method="get">
<input type="submit" value="Insertar">
</form>
<form action="frmList.php" method="get">
<input type="submit" value="Listar">
</form>

</div>
<br>
<form action="index.php" method="get">
<?php
// put your code here
try {
if (!empty($_GET["txtDato"])) {
$value = $_GET["txtDato"];
echo "<br>Valor $value";
}
} catch (Exception $ex) {
echo '<br>Error';
}
?>
</form>
</div>
<div class="message">
<!-- Aquí puedes agregar mensajes o contenido adicional -->
</div>
</body>

You might also like