Menu

More then 1 form

Help
Anonymous
2003-07-03
2003-12-23
  • Anonymous

    Anonymous - 2003-07-03

    Is it possible to use more then 1 form at the same time.???

     
    • Musawir Ali

      Musawir Ali - 2003-07-03

      There is no limit on the number of forms you can use at the same time, however, each time you create a form, you must copy the entire directory called "forms" to the place where you will be using it. If you don't do that, and start createing your next form, your old form will be overwritten.

       
    • Anonymous

      Anonymous - 2003-09-25

      its possible, if you patch all lines in process3.php where the script wants to write, and finaly shows you the link.
      first i have generated a filename-extension by a usix timestamp:

      $spext=time();

      then i have attached this extension f.ex.:
      bevore:
      $make = fopen("forms/admin/data.dat","w") or die("Could not write file-based data file.");

      after:
      $make = fopen("forms/admin/data.$spext.dat","w") or die("Could not write file-based data file.");

      seems to work great!
      Sandman

       
    • Musawir Ali

      Musawir Ali - 2003-09-25

      nice hack sandman ;)

       
    • Anonymous

      Anonymous - 2003-12-23

      Couldn't one just as easily RENAME the previous "form1.html" file (on the HOST) BEFORE generating another form?  Would a RENAMED for not still work?

       
    • Anonymous

      Anonymous - 2003-12-23

      No, I guess you can't do that.  I tried it.  It didn't work. 

       
      • Musawir Ali

        Musawir Ali - 2003-12-23

        It is not that simple. There are a number of things that get generated besides form1.html. Namely, there is process.php (which processes the form data), the admin portal files, and the file based database system files. All of these need to be copied along with form1.html to make things work.

         

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.