Activity Stream
48,167 MEMBERS
6826 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 5 of 5
  1.     
    #1
    Member
    Website's:
    facebook.com

    Default 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 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

  2.   Sponsored Links

  3.     
    #2
    Teh 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


    I joined KWWHunction before it was cool!
    My "AWESOME" Graphic designing Service


  4.     
    #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...
    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); 
    ?>
    Of course you can add/remove as many inputs and fwrite statements as needed.

  5.     
    #4
    Member
    Website's:
    facebook.com
    Excellent thank you!

  6.     
    #5
    Respected Member
    You are welcome.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [Selling] 4.99$-Mp PROMO Discont 50 Forms+TemplateFile
    By Trusteduploader in forum Completed Transactions
    Replies: 4
    Last Post: 27th Mar 2011, 08:49 AM
  2. Removing CPAlead Surveys [Just Bypass those Forms Fill ups]
    By dr$hn in forum Tutorials and Guides
    Replies: 10
    Last Post: 9th Dec 2010, 02:32 PM
  3. CPALEAD Tax Forms?
    By Paul in forum Webmaster Discussion
    Replies: 20
    Last Post: 6th May 2010, 04:41 PM
  4. vBulletin 4 - Forms
    By .Jamie in forum vBulletin
    Replies: 2
    Last Post: 16th Mar 2010, 10:59 PM
  5. Submitting HTML into PHP forms
    By genji in forum Webmaster Discussion
    Replies: 0
    Last Post: 12th Sep 2009, 09:20 PM

Tags for this Thread

BE SOCIAL