hello, i am making a site and i want to add a text form so that it has a name textbox and a message box and a send button. Thats all very well.....
I made a code that when you press send it uses a PHP code then saves it to a .TXT file. I come to use it and the Stupid code ic classed as a PHISHING site?!?!?!?!? 😕 😕 I was like WTF. Heres my code:
<?php
header("Location: http://www.MY SITE.com");
$handle = fopen("messages.txt", "a");
foreach($_GET as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>
HOW IS THIS CLASSED AS A FREEKING PHISHING FILE!?!?!?!
please can some 1 make me a form and a php code that stores it to a .TXT file on my site???
Thanks