Get values from textfield

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Tomislav

    #1

    Get values from textfield

    Helo,

    as I am new to PHP my question is related to pure basics. I wrote
    simple PHP file for automated mail sending. It sends, of course, mail
    with fixed text but I need "mail()" function to retrieve string values
    from textfield controls in Dreamweaver instead of fixed string values.

    Any ideas ?

    Thanks,

    Tomislav
  • Jerry Stuckle

    #2
    Re: Get values from textfield

    Tomislav wrote:
    Helo,
    >
    as I am new to PHP my question is related to pure basics. I wrote
    simple PHP file for automated mail sending. It sends, of course, mail
    with fixed text but I need "mail()" function to retrieve string values
    from textfield controls in Dreamweaver instead of fixed string values.
    >
    Any ideas ?
    >
    Thanks,
    >
    Tomislav
    Look up your $_POST and $_GET arrays.

    --
    =============== ===
    Remove the "x" from my email address
    Jerry Stuckle
    JDS Computer Training Corp.
    jstucklex@attgl obal.net
    =============== ===

    Comment

    • Tomislav

      #3
      Re: Get values from textfield

      Look up your $_POST and $_GET arrays.
      Thanks, I implemented it and works fine !

      Tomislav

      Comment

      • Ravi

        #4
        Re: Get values from textfield

        Why you peole take the row index as 0,1,2 when you are getting it from
        db. Is this a best way

        Comment

        • Jerry Stuckle

          #5
          Re: Get values from textfield

          Ravi wrote:
          Why you peole take the row index as 0,1,2 when you are getting it from
          db. Is this a best way
          >
          I'm not sure I understand your question. But if you're talking about
          arrays, array indicies start with 0 in PHP.

          --
          =============== ===
          Remove the "x" from my email address
          Jerry Stuckle
          JDS Computer Training Corp.
          jstucklex@attgl obal.net
          =============== ===

          Comment

          Working...