Results 1 to 5 of 5
-
29th Apr 2011, 03:08 AM #1OPMemberWebsite's:
facebook.comHow to create an Offiline Forms
Hi guys, I would appreciate any help on this topic:
I have a small bussiness and I want to use one of my computers for customer feedback and contact information, this computer would be available for them to input the information by themselves.
I want to have a form open on this computer, with certain text boxes to fill out information, a reset button and a submit button, however, on submit I want the form to save locally on that computer, I would like to make it as simple as possible so that anyone can use it.
Does anyone know any software that does this? Or how I could do it by creating an offline website or in visual basic or anyway?
Thank You!cotufa-ssdd Reviewed by cotufa-ssdd on . How to create an Offiline Forms Hi guys, I would appreciate any help on this topic: I have a small bussiness and I want to use one of my computers for customer feedback and contact information, this computer would be available for them to input the information by themselves. I want to have a form open on this computer, with certain text boxes to fill out information, a reset button and a submit button, however, on submit I want the form to save locally on that computer, I would like to make it as simple as possible so Rating: 5
-
29th Apr 2011, 03:30 AM #2Teh GFX Whore! ^.^
use C # or if you want it to be REALLY basic and old school looking. use C++. Either way its really easy to create one
-
29th Apr 2011, 02:44 PM #3Respected 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...
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);
?>
-
29th Apr 2011, 06:21 PM #4OPMemberWebsite's:
facebook.comExcellent thank you!
-
29th Apr 2011, 07:39 PM #5Respected Member
You are welcome.
Sponsored Links
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
themaCreator - create posts from...
Version 3.45 released. Open older version (or...