Advertisement
scienceExperiment

change.php

Sep 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.14 KB | None | 0 0
  1. <?php
  2.     $myfile = fopen("color.txt", "w") or die("Unable to open file!");
  3.     $txt = $_GET["c"];
  4.     fwrite($myfile, $txt);
  5.     fclose($myfile);
  6. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement