$results = "results.txt";
$resultsLink = fopen($results, 'a');
$fileParagraph = $paragraph;
fwrite($resultsLink, $fileParagraph);
fclose($resultsLink);
file_put_contents($results, $fileParagraph, FILE_APPEND);
$results = "results.txt";
$resultsLink = fopen($results, 'a');
$fileParagraph = $paragraph;
fwrite($resultsLink, $fileParagraph);
fclose($resultsLink);
file_put_contents($results, $fileParagraph, FILE_APPEND);