<?php
    $keyword = "text";
    $file=fopen("./back.txt","a+");
    fwrite($file,$keyword);
    fclose($file);
?>