Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?
- ob_start();
- $order = ob_get_contents();
- ob_end_clean();
- $file = fopen("file.txt","w");
- fwrite($file, $order);
- fclose($file);
- $hash = $order['hash'];
- $file = fopen("test.txt","w");
- fwrite($file, $hash);
- fclose($file);
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement