Your IP : 3.143.5.201


Current Path : /proc/self/root/home/sudancam/.trash/subscribe/
Upload File :
Current File : //proc/self/root/home/sudancam/.trash/subscribe/subscribe.php

<?php 
if(isset($_POST['email']) && !empty($_POST['email'])) {
	$handle = fopen("subscribe_list.txt", "a");
	fwrite($handle, PHP_EOL . $_POST['email']);
	fclose($handle);
}
?>