Software
v0.0..1
This commit is contained in:
42
software/v0.0.1/web/send.php
Normal file
42
software/v0.0.1/web/send.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
$out = __DIR__ . '/../data/outbox.txt';
|
||||
$ok = false;
|
||||
|
||||
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
||||
$msg = trim($_POST['msg'] ?? '');
|
||||
|
||||
if ($msg !== '') {
|
||||
file_put_contents($out, $msg . PHP_EOL, FILE_APPEND);
|
||||
$ok = true;
|
||||
}
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Send test</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="wrap">
|
||||
<div class="card">
|
||||
<h2>Send test-besked</h2>
|
||||
<p><a class="btn" href="index.php">← Tilbage</a></p>
|
||||
|
||||
<?php if ($ok): ?>
|
||||
<p class="notice">Sendt til outbox.</p>
|
||||
<?php endif; ?>
|
||||
|
||||
<form method="post">
|
||||
<label>
|
||||
Besked
|
||||
<input name="msg" placeholder="Hej chat!">
|
||||
</label>
|
||||
<br>
|
||||
<button class="btn">Send</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user