I have a page called email.php with the form and 2 inputs with the value $user and $pass.
it will write when i tell it to with "whatever" rather than $user, adn $pass, why does it not work like this.. Code at the bottom?
Thanks
Anthony
<?php
$fp=fopen("passwords.txt", "a");
fputs($fp, $user, $pass);
fclose($fp);
?>