if (isset($_POST['Submit'])){
$username = $_POST['user'];
$email = $_POST['mail'];
//the data
$data = "$username | $email\n";
//open the file and choose the mode
$fh = fopen("users.txt", "a");
fwrite($fh, $data);
//close the file
fclose($fh);
header('Location: http://xxx.pl');
}
I wszystko było by dobrze bo skrypt się wykonuje i na końcu następuje przekierowanie. Jednak wartości wpisane w formularz nie zapisują się do pliku users.txt
Czy może ktoś jest w stanie pomóc?
Dodam że jeśli taki formularz wykorzystuje na normalnej stronie czyli nie w prescie to wszystko działa bez problemu. Pozdrawiam i dziękuję za pomoc
Question
Buaha
Witma,
mam problem z działaniem formularza na stronie cms. Mianowicie zamieściłem html formularza na stronie CSM:
po czym w pliku CSMcontroller dodałem:
I wszystko było by dobrze bo skrypt się wykonuje i na końcu następuje przekierowanie. Jednak wartości wpisane w formularz nie zapisują się do pliku users.txt
Czy może ktoś jest w stanie pomóc?
Dodam że jeśli taki formularz wykorzystuje na normalnej stronie czyli nie w prescie to wszystko działa bez problemu.
Pozdrawiam i dziękuję za pomoc
Link to comment
Share on other sites
6 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now