help subscribe button save emails
4 posts
Page 1 of 1
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


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

Find my programs on Softpedia
Where do you want to save text? Flat file or database?
CodenStuff wrote:Nope, it's just your sick and dirty mind. You sick twisted warped little pervo![]()
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);
?>
comathi wrote:If what you want is writing the contents of the TextBox into a text file, you could use PHP:i think your code works but can you explain more i mean can you write them on a html and give it to me
Code: Select all<?php $email = $_GET['yourtextboxname']; $textfile = fopen("filename.txt",'w'); fwrite($textfile,$email); ?>



thanks in advance
Find my programs on Softpedia
4 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023