git-svn-id: https://192.168.0.254/svn/Proyectos.PosadaLaLlosa_Web/trunk@10 4b469eb7-237d-4988-9973-fa40bd9eeb91
47 lines
1.4 KiB
PHP
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> </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> </p>
|
|
<p> </p>
|
|
<p> </p>
|
|
<p> </p>
|
|
<p> </p>
|
|
<p> </p>
|
|
<p> </p>
|
|
<p> </p>
|
|
</body>
|
|
</html>
|
|
|
|
|