All pastes #2126063 Raw Edit

Untitled

public text v1 · immutable
#2126063 ·published 2012-03-08 07:23 UTC
rendered paste body
<?php
$testdata = "test";
$write= fopen('test.txt',"w");
fwrite($write,$testdata);
fclose($write);
?>