-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditar_sabado.php
31 lines (30 loc) · 1.08 KB
/
editar_sabado.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Editor de txt</title>
</head>
<body>
<?php
$fn = "sabado.json";
if (isset($_POST['content'])) {
$content = stripslashes($_POST['content']);
$fp = fopen($fn,"w") or die ("Error al abrir el archivo");
fputs($fp,$content);
fclose($fp) or die ("Error al cerrar el archivo");
}
?>
<div style="width:950px; text-align: center; margin: auto; background-color: #F0F0F0; border: 1px solid #B3B9D5; border-color: #B3B9D5; padding: 15px; font-family: Verdana, Arial, Helvetica, sans-serif; color: #717CB0; font-size: 14px;">
Editor de archivos <strong>txt
</strong><br /><br />
<form action="<?php echo $_SERVER["PHP_SELF"] ?>" method="post">
<textarea rows="25" cols="110" name="content"><?php readfile($fn); ?></textarea>
<br />
<br />
<input type="submit" value=" Guardar los cambios ">
</form>
<br />
www.mipolaris.com
</div>
</body>
</html>