This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
PosadaLaLlosa_Web/privado/gestion.php
2010-03-10 19:34:41 +00:00

47 lines
1.4 KiB
PHP

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Textos de ofertas de Posada La Llosa</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<style type="text/css">
@import "posada.css";
</style>
</head>
<body>
<?php
if (file_exists("texto_ofertas.txt"))
$ofertas = file_get_contents("texto_ofertas.txt");
?>
<form name="textos" action="guardar.php" method="post">
<table width="780" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><img src="./imagen/cabecera-textos.jpg" width="780" height="82"></td>
</tr>
</table>
<br/>
<table width="780" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="500" height="175" align="right" valign="center" style="background-color:#ddd;"><strong>Texto para OFERTAS:</strong>&nbsp;&nbsp;&nbsp;</td>
<td height="175" valign="top" background=""><textarea id="ofertas" name="ofertas" cols="53" rows="23"><?php echo $ofertas; ?></textarea></td>
</tr>
<tr><td colspan=2 align="right"><br/><input type=submit value="Guardar"></td></tr>
</table>
</body>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</body>
</html>