You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
318 B
17 lines
318 B
<?php
|
|
$bname = $_POST["bname"];
|
|
$bmail = $_POST["bmail"];
|
|
$btext = $_POST["btext"];
|
|
|
|
//echo var_dump($_POST);
|
|
|
|
$myfile = fopen("kniha.txt","a");
|
|
$booktext = "<h2>".$bname."</h2><h3>".$bmail."</h3><p>".$btext."</p><hr>";
|
|
// echo $booktext;
|
|
fwrite($myfile,$booktext);
|
|
fclose($myfile);
|
|
|
|
header("Location: /?f=done");
|
|
|
|
|
|
?>
|