Попытка соединить большой HTML-документ с вводом из формы - PullRequest
0 голосов
/ 01 февраля 2019

Я пытаюсь создать документ из разных его частей.Целевой документ не получает никакого контента.

Можете ли вы сказать мне, что я здесь не так делаю?

У меня есть begin.txt с содержанием HTML и end.txt, к которому я хочу добавить новый код ( newarticle.txt ), добавленный вначало, так что он движется вперед каждый раз, когда делается новое дополнение.Тогда я хочу, чтобы все это было собрано в articles.html.

<?php
$v1 = $_POST["url"]; //You have to get the form data
$v2 = $_POST["description"];
$v3 = $_POST["date"];

$destination = fopen('articles.html', 'w+');
$begin = fopen('begin.txt','w+');
$end = fopen('end.txt','w+');
$currentend = file_get_contents('/end.txt');
$currentbegin = file_get_contents('/begin.txt');

$file = fopen('newarticle.txt', 'w+'); //Open your .txt file
ftruncate($file, 0); //Clear the file to 0bit
// $content =  <li><a href=$v1. PHP_EOL .$v2. PHP_EOL .$v3;

$build1 = <<<EOF
<li><a href="$v1">$v2</li>
<li>$v3</li>
EOF;

fwrite($file , $build1); //Now lets write it in there
fclose($file ); //Finally close our .txt

$file = "newarticle.txt";
$currentfile = file_get_contents($file);

$build2 = <<<EOF
$build1
$currentend
EOF;

ftruncate($end, 0); //Clear the file to 0bit
fwrite ($end , $build2);
fclose ($end );

$updatedend = 'end.txt';
$updatedendcontent = file_get_contents($updatedend);
ftruncate($destination, 0);

$build3 = <<<EOF
$currentbegin
$updatedendcontent
EOF;

fwrite ($destination , $build3);
fclose ($destination );
die(header("Location: ".$_SERVER["HTTP_REFERER"]));
?>

Исправлено, это работает

<?php
$v1 = $_POST["url"]; //You have to get the form data
$v2 = $_POST["description"];
$v3 = $_POST["date"];

// $begin = fopen('begin.txt','w+');
$currentend = file_get_contents('end.txt');
$currentbegin = file_get_contents('begin.txt');

$file = fopen('newarticle.txt', 'w+'); //Open your .txt file
ftruncate($file, 0); //Clear the file to 0bit
// $content =  <li><a href=$v1. PHP_EOL .$v2. PHP_EOL .$v3;

$build1 = <<<EOF
<li><a href="$v1">$v2</li>
<li>$v3 by Accounting Today</li>
EOF;

fwrite($file , $build1); //Now lets write it in there
fclose($file ); //Finally close our .txt

//$file = "newarticle.txt";
$currentfile = file_get_contents('newarticle.txt');

$build2 = <<<EOF
$build1
$currentend
EOF;

$end = fopen('end.txt','w+');
ftruncate($end, 0); //Clear the file to 0bit
fwrite ($end , $build2);
fclose ($end );

//$updatedend = 'end.txt';
$updatedendcontent = file_get_contents('end.txt');


$build3 = <<<EOF
$currentbegin
$updatedendcontent
EOF;

$destination = fopen('articles.html', 'w+');
ftruncate($destination, 0);
fwrite ($destination , $build3);
fclose ($destination );
die(header("Location: ".$_SERVER["HTTP_REFERER"]));
?>
...