Novice in php help please

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Novice in php help please

    I have two html pages that are to be filled in by the visiter to the site and i
    need then to be sent to the recipient i a legible format , i am running a linux
    server with php enabled , but from all the forums on php and the help files i
    am unable to comprihend the advice given to me i am led to believ that the
    html form will call on the php file to send the correct data through but as yet
    have not seen any comparison between a form and what the php file would look
    like i have been toiling over this for three days now trying various different
    metthods and i think i have simply wasted a lot of time . i would really
    appreciate some help if anyone knows how to do this
    many thanks
    steve103

    steve103 Guest

  2. Similar Questions and Discussions

    1. Help please, novice
      I would like to try to download a song onto my computer that I can only find on the internet through their website that uses the macromedia flash 8....
    2. Novice
      Hi, I am just trying the demo version. I got my movie to play in in the stage. Now I need it to be able to be burned to a cd and to autoplay when...
    3. another novice(very novice!) needs help
      This is not exactly a freehand thing,but I need help here.I f igured someone who's good at freehand generally understands stuff about handling...
    4. Novice !!!
      hello, i am an older web developper, i develop on Asp, Cgi, perl, java and PHP of course. And i wanna test the flash, but i have a big probleme...
    5. Help for a novice, Please!
      Hi Everyone! I have an issue that I cannot seem to find a solution for: I have one table that holds information about parts installations. The...
  3. #2

    Default Re: Novice in php help please

    hi,

    Check out this script. [url]www.formtoemail.com[/url]. its really nice. you can add as
    many fields to the form as you want, and you dont have to make any changes to
    the script. your form looks like this:
    <form name="comments" action="formtoemail.php" method="post">
    <input type="text" name="name">
    <input type="radio" name="confirm" value="user confirms!">
    </form>
    then on submit, you would get an email that looks like this:
    name: (whatever user inputs)
    confirm: user confirms (if radio button is checked)

    this script even has a thankyou page that you can customize. check it out!

    jmack159 Guest

  4. #3

    Default Re: Novice in php help please

    thanks Josh i willl try this and see how i get on
    steve103
    steve103 Guest

  5. #4

    Default Re: Novice in php help please

    Do you need to submit the form by php? I often use CGI to send simple forms.
    Probably your server has CGI.

    deathvult Guest

  6. #5

    Default Re: Novice in php help please

    hi there i wouldnt no where to start with cgi ,im afraid i am very new to web
    devs and am learning as quick as i can but could be doing with some help here
    the forms are on [url]http://www.beachlitter.co.uk/Contact.htm[/url] and
    [url]http://www.beachlitter.co.uk/EvalForm.htm[/url]




    steve103 Guest

  7. #6

    Default Re: Novice in php help please

    hi there josh i followed tihe instructions to the letter and i get a blank
    page do i need to replace my existing form for this one ? or what i am now
    tearing my hair out . the form that i currently have is fine and i dont want to
    change it if i dont have to (the layout that is) what i dont get is how the
    php file knows which fields to put in and how i am supposed to tell it if
    someody could give me an example of an html form and the coinsiding php file
    that mite help >
    thanks
    steve103


    steve103 Guest

  8. #7

    Default Re: Novice in php help please

    if you follow the directions that come with the file, it gives you a starter
    script that you put into your html file. this is the form that the user filles
    out. when the user hits submit, the form passes the data to the php file that
    is included. the script that handles the form data is in this file (i think its
    named FormToEmail.php). you insert you email address where the comments tell
    you to. in the <body> section you can put whatever you want , a thank you, etc.
    you can see mine here: [url]www.cnjccamping.org/contactus[/url] . once you fill out the
    form and hit submit, it goes to my thankyou page. hope this helps a bit, sorry
    it took a while to get back to you!

    jmack159 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