Results 1 to 5 of 5
Threaded View
-
29th Apr 2011, 02:44 PM #3
Respected Member
Are your customers accessing your computer using the internet?
If yes just use html and php to save the input to the form.
Somrething like this:
Code:<form action="save.php" method="post"> <h5>Name</h5> <input type="text" name="name" size="50" /> <h5>Address</h5> <input type="text" name="address" size="50" /> <br /> <input type="submit" value="Save"> <input type="reset" value="Reset"> </form>
and for my save.php...
Of course you can add/remove as many inputs and fwrite statements as needed.PHP Code:<?php
$file = "file.txt";
$outFile = fopen($file, 'a+');
// get input data and add to file
$out = $_POST['name'];
fwrite($outFile, $out." \r\n");
$out = $_POST['address'];
fwrite($outFile, $out." \r\n");
// finished close file
fclose($outFile);
?>
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
[Selling] 4.99$-Mp PROMO Discont 50 Forms+TemplateFile
By Trusteduploader in forum Completed TransactionsReplies: 4Last Post: 27th Mar 2011, 08:49 AM -
Removing CPAlead Surveys [Just Bypass those Forms Fill ups]
By dr$hn in forum Tutorials and GuidesReplies: 10Last Post: 9th Dec 2010, 02:32 PM -
CPALEAD Tax Forms?
By Paul in forum Webmaster DiscussionReplies: 20Last Post: 6th May 2010, 04:41 PM -
vBulletin 4 - Forms
By .Jamie in forum vBulletinReplies: 2Last Post: 16th Mar 2010, 10:59 PM -
Submitting HTML into PHP forms
By genji in forum Webmaster DiscussionReplies: 0Last Post: 12th Sep 2009, 09:20 PM










Register To Reply

Staff Online
themaCreator - create posts from...
Version 3.55 released. Open older version (or...