i wouldnt even know what to call it.
i want to make a input box on one of my webpages so a visitor can write stuff to me. I guess the stuff that they write would be in $wrote.
$filename = 'inputhere.txt';
$tiempo = date('M j y g:i:s a');
$writethis =$wrote . " " . $_SERVER['REMOTE_ADDR'] . " " . $tiempo . "\n";
$hand = fopen($filename, 'a');
fwrite($hand, $writethis);
fclose($hand);
So this write stuff in a file called inputhere. I guess i need to know how to make the user control that varible. And i need to know how to make that input box with a send button. thanks