function in DW recordset

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default function in DW recordset

    Hi..
    DW recordset comes with all of these functions, when and how we should use
    them?
    url_parameter,form_variable,cookie,session variable,application
    variable,entered value and lastly request variable.
    so far I only familiar with URL_parameter,form variable and session variable..
    how about the rest.. can someone explain on me?

    samkry Guest

  2. Similar Questions and Discussions

    1. I don't see the "New function" button in RecordSet
      Hi, I've been going through the ColdFusion tutorial for creating a sample database application from...
    2. PHP explode function and recordset
      Hi Im using the php explode function in a search page to separate some values and then trying to place those values in to my sql query. I can...
    3. RecordSet.Move or RecordSet.AbsolutePosition??
      Hi, I'm trying to use either one of these methods to position the cursor in a specific position inside a recordset, but neither one seems to...
    4. Need a little help on RecordCount recordset function
      I am testing a basic function to access a db from the web and step through a set of client email addresses and send each one an email. I have a...
    5. note 33132 deleted from function.register-shutdown-function by sniper
      Note Submitter: markus@malkusch.de ---- I can't agree with nick at nickjoyce dot com. I use php 4.2.3 on linux and my shutdown function is...
  3. #2

    Default Re: function in DW recordset

    entered value is a static value that you enter directly into the SQL statement.
    ususally you have a user submit a form or click a link..get a value from them
    and execute a sql statment, with an entered value you dont have to ask the user
    for any input, the value is part or the sql statement so you can execute that
    sql statement on any page without having to get input from the user. ex. you
    want to display # of members who joined before 2005...so the value of 2005
    would be the entered value.

    cookie you would use if you are saving info on the customers pcs, its
    basically the same as using a url parameter, hidden form value or session
    variable, but it doesnt get erased when the browser is closed. if only gets
    erased if they delete the cookie by using disk cleanup, or a cookie cleaner
    software or somethign else. usually you would use cookies if you are tracking
    customers web site usage, if you have a login page and they selected remember
    my username..

    application variables is info that is stored on the server itself that can be
    reused by everyone that visits the site, its not specific for any one user. so
    the info that you retreive and display for one user is the same as for the next
    user. on the modifications that one user does to that info can be seen by the
    next because its stored on the server and is not deleted.

    also check dreamweaver's help files, they have info on all these items, and
    then lead into examples.

    nisav19 Guest

Posting Permissions

  • You may not post new threads
  • You may 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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139