Page 1 of 1
help subscribe button save emails
Posted: Sun Oct 21, 2012 4:28 pm
by Shim
hello guys
i need your help now i have a text box and a button i want to save the text when clicking the button
actually i wanted to make a subscription system like this help me out please

Re: help subscribe button save emails
Posted: Sun Oct 21, 2012 4:55 pm
by Filip
Where do you want to save text? Flat file or database?
Re: help subscribe button save emails
Posted: Sun Oct 21, 2012 5:07 pm
by comathi
If what you want is writing the contents of the TextBox into a text file, you could use PHP:
Code: Select all<?php
$email = $_GET['yourtextboxname'];
$textfile = fopen("filename.txt",'w');
fwrite($textfile,$email);
?>
Re: help subscribe button save emails
Posted: Mon Oct 22, 2012 4:30 am
by Shim
comathi wrote:If what you want is writing the contents of the TextBox into a text file, you could use PHP:
Code: Select all<?php
$email = $_GET['yourtextboxname'];
$textfile = fopen("filename.txt",'w');
fwrite($textfile,$email);
?>
i think your code works but can you explain more i mean can you write them on a html and give it to me

i forgot everything on web developments because i didnt developed any for a long time

hope you will help me
thanks in advance