Results 1 to 4 of 4

Thread: Question from Tutorial
      
   

  1. #1
    RoyRJB is offline Sergeant
    Join Date
    Sep 2006
    Posts
    21

    Question Question from Tutorial

    Hi,

    I really like all the tutorials - they are easy to follow but sometimes raise as many questions as are answered! (for me anyway)

    In this case - as per the example in Forms Tut 2 - as usual I follow what's given but.. what happens to the password/password change data when you hit the submit button- where does it go? -what is updated, where? if this is a mailto example - how does this work in practice?

    This leads into trying to understand how to store and use the data captured on any form other than as an email.... before I tackle the Advanced version

    Any help appreciated!

    Roy

  2. #2
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default Re: Question from Tutorial

    The form field values are stored in an array in which the key is the field name and the value is what the visitor has filled in. This array is $_POST which is then broken, either by using generic loops or specific scripts, to it's single elements. From that point on, what happens depends on the script: it is sent to the form owner as email, or stored in a database, or writen in a file, or a combination of the above.
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


  3. #3
    RoyRJB is offline Sergeant
    Join Date
    Sep 2006
    Posts
    21

    Smile Re: Question from Tutorial

    Thanks for the answer - I know that my next question coming down the tracks will be how to use the data that gets placed in the db! but I'm not there ...yet ..any advice or comments in advance?
    Roy

  4. #4
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default Re: Question from Tutorial

    There are two ways of retreiving the database data: one, for non pros, is to use the phpMyadmin (you can find it in your CP, in the section "MySQL Databases, in the bottom of the page). It will allow you to connect to your database, look at the tables of the database, select a particular table (f.e. "clients", or "products" or wharever), and then display, edit, delete or add new records.

    However this is more or less like having all the info writen in a piece of paper, it's not very useful.

    The correct approach - but this requires a specific script - would be that of having a specific application (script) that would allow additional features: all of the above, but also displaying and being able to edit the records directly on your website (in that case these pages could be part of an authorised users area (if required) or not, depending on the application you are building), use the records for various purposes (f.e. mailing to all members, or calculating the stock value of a company's stock of spare parts or whatever else you can imagine of). Even more, these scripts can look through and establish relations between the databases (or between tables of the same database). That's known as RDBM (relational database management) .

    Large companies use custom scripts. The can afford paying for the construction of such applications. However, small companies, use commercial scripts that come at a lower price and will allow more or less the same things. There are membership management scripts, dating scripts, property sell/buy/hire scripts, and many others. The problem with these scripts is that they are limited to their own database, and cannot comunicate between them, they cannot establish these "relations" between the different databases)
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


Thread Information

Users Browsing this Thread

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

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49