Mailing list form, how to make it functional?

I'm trying to add the typical "Join our Mailing List" form into a website where users can submit their email addresses.  I've built the form and now I need to make it functional.  I don't know a lick of php or databasing, and after investigating it on the web and the forum there seems to be a bunch of different answers and I'm not sure which direction to go in.  Is there an easy way to do this with a premade script somewhere?  Would I have to get it from the company that's hosting the site?  How do I implement it?
Thanks in advance!!!!

Awesome, thanks so much for the help CanonBoy.  So I can use this for both my mailing list form and my contact message form?  I opened Dreamweaver and on the contact page I set the form to this:
<div id="ContactForm">
  <form id="form1" name="form1" method="post" action="contact.php">
    <table width="300">
      <tr>
        <td colspan="2"><span class="MainText">All information will be kept private</span></td>
      </tr>
      <tr>
        <td width="61"><span class="MainText">Name:</span></td>
        <td width="227"><span class="MainText">
          <input name="Name" type="text" id="Name" size="25" />
        </span></td>
      </tr>
      <tr>
        <td><span class="MainText">Email:</span></td>
        <td><span class="MainText">
          <input name="Email" type="text" id="Email" size="25" />
        </span></td>
      </tr>
      <tr>
        <td><span class="MainText">Phone:</span></td>
        <td><span class="MainText">
          <input name="Phone" type="text" id="Phone" size="25" />
        </span></td>
      </tr>
      <tr>
        <td> </td>
        <td> </td>
      </tr>
      <tr>
        <td><span class="MainText">Message:</span></td>
        <td><span class="MainText">
          <textarea name="Message" id="Message" cols="23" rows="5"></textarea>
        </span></td>
      </tr>
      <tr>
        <td> </td>
        <td> </td>
      </tr>
      <tr>
        <td> </td>
        <td><input name="Clear" type="reset" class="MainText" id="Clear" value="Clear" />
        <input name="Submit" type="submit" class="MainText" id="Submit" value="Submit" /></td>
      </tr>
    </table>
  </form>
</div>
Do I have to change the form ID and the name in line 2?  And also I'm not sure what you meant about the hidden field, what exactly do I copy and paste and where do I put it?  And is there a generic form on the tectite site I can add the client's email address to, change it to contact.php and upload it?  Thanks big time!!!

Similar Messages

  • How to make a function return number(10,0) data type (ORACLE 10g)?

    With 10g, how to make a function return number(10,0) data type?
    here is the function, it returns a number type :
    create or replace FUNCTION Get_portfolio_Id3 (p_HistObjTable In Varchar2,p_LHISTOBJID IN NUMBER) RETURN view_cpu_STD_Asset.LPORTFOLIOITEMID%Type IS
    v_Id view_cpu_STD_Asset.LPORTFOLIOITEMID%Type;
    BEGIN
    If p_HistObjTable ='amPortfolio'
    then v_Id:=p_LHISTOBJID ;
    elsIf p_HistObjTable = 'amComputer' then
    select litemid into v_Id from smcdba.amComputer c where c.LCOMPUTERID=p_LHISTOBJID ;
    else v_Id:=-99;
    End If;
    RETURN v_Id;
    END Get_portfolio_Id3;
    Thanks.
    Message was edited by:
    user631701

    create or replace FUNCTION Get_portfolio_Id3 (p_HistObjTable In Varchar2,p_LHISTOBJID IN NUMBER) RETURN view_cpu_STD_Asset.LPORTFOLIOITEMID%Type IS
    v_Id view_cpu_STD_Asset.LPORTFOLIOITEMID%Type;
    BEGIN
    If p_HistObjTable ='amPortfolio'
    then v_Id:=p_LHISTOBJID ;
    elsIf p_HistObjTable = 'amComputer' then
    select litemid into v_Id from smcdba.amComputer c where c.LCOMPUTERID=p_LHISTOBJID ;
    else v_Id:=-99;
    End If;
    RETURN round(v_Id);
    END Get_portfolio_Id3;

  • PL/SQL: How to make a function accessible to all users?

    How can I make a function accessible to all users?
    I have written a stored function called GET_NET_BALANCE.
    I can run it but my users cannot.
    I have tried the following, but my users still cannot
    run the function:
    GRANT EXECUTE ON GET_NET_BALANCE TO PUBLIC;
    Thanks, Eileen

    Hi,
    You can try creating a public synonym on the function so that it is accessible to all.
    To get greater response.. please post your question at
    PL/SQL
    Regards,
    Anupama

  • How to make a function take a specific group of constants

    I know i asked this before, maybe a year ago, but I totally forgot how to do it, and I haven't been programming much lately. But I was wondering if somebody can tell me how to make a certain function take specific constants. For example there are java functions, of which I can not remember that will only take certain values. So the function might look like:
    public getInfo(String INFONAME){}Where INFONAME has to be like one of two names or something, and they are constants that are defined somewhere else. If anybody knows what I mean by this, and knows how to create functions like that please let me know. Thank you.

    here's an overkill,
    import java.util.*;
    abstract class DoWhatever {
        public static Hashtable ht = null;
        public static Object DoWhat( String s, Object obj ) {
         if( null == ht ) {
             ht = new Hashtable();
             ht.put( ThisDoWhatever.NAME, new ThisDoWhatever() );
             ht.put( ThatDoWhatever.NAME, new ThatDoWhatever() );        
         return ( (DoWhatever) ht.get( s ) ).doWhatever( obj );
        public abstract Object doWhatever( Object obj );
    class ThisDoWhatever extends DoWhatever {
        public final static String NAME = "this";
        public Object doWhatever( Object obj ) {
         System.out.println( NAME );
         return null;
    class ThatDoWhatever extends DoWhatever {
        public final static String NAME = "that";
        public Object doWhatever( Object obj ) {
         System.out.println( NAME );
         return null;
    public class DoThisOrThat {
        public static void main( String[] args ) {
         DoWhatever.DoWhat( args[ 0 ], null );
    }

  • PDF Forms: How to make an entry duplicate itself to fill a table?

    Hello,
    I am making price tags for a set of commodities. I know how to make pdf forms and want to use this. However, I want to achieve this: If I enter the name of commodity, price and other details once in a cell, it must automatically fill out the whole table with the same info so that I don't need to manually do the copy pasing.
    Word, Excel, etc change the formatting but PDF won't. Thats the reason I want to create a table, and each cell in the table will be a price tag. So, I take a print out of the page and can easily have the commodity tags ready for each commodity.
    Is this possible in Acrobat Professional? Like I said before, I have created pdf forms but this particular automatic duplicating of the entered data is something I dunno how to get. Any help will be greatly appreciated.
    Thanks in advance.
    Vikram

    Hello George,
    God bless you! You've made my work a lot easier! As soon as I changed the name of the fields to be the same, the data automatically duplicates itself!
    Could you kindly guide me as to how I ensure that a particular row, column or all cells in a table have the same field name without actually having to click on each of them and rename the field? Is there some setting or menu to make it an easier/ automatic process after once getting an input from the user?
    Thanks a ton again. If I need to post this question as a new one, I'm ready to do it too. Please do let me know.
    Regards,
    V

  • How to make a function in separate thread

    i need to make a function that is running in a separate thread
    Thank's in advance

    Thank's
    but in my program i have a main class which is a server it runs forever.
    from the main class when i call a function it runs in a separate thread and returns the result to the callee and the main function continue it's work
    class server
    //this function when called must be in separate thread
    public int function(int x)
    //there could be wait here or sleep
    return x*2;
    public static void main(String[] args)
    // Run RMI server
    i hope u understand me!!!
    Thank's

  • Interactive Form - How to make fields read-only through the code?

    Simple question but i can't seem to figure out how to do it. I have an interactive form that have editable fields. How do I toggle fields to make some of them read-only through the code. Please provide cold sample. thanks a lot.

    <b>Nagarajan Kumarappan:</b>
    I know how to do that but that's setting the value at design time. Mine has to be done at runtime(when the page loads) because there are a lot of condidtions determining which fields should be and should not be readonly. therefore I have to do in the code. Any by saying code I mean Java not java script or formcal.
    <b>kushagra mittal:</b>
    are you talking about regular webdynpro input fields? I am asking for that. I am talking about input fields inside my adobe interactive form embedded on the webdynpro page.
    I think what needs to be done is to disable context attributes like Nagarajan Kumarappan suggested but do that through Java which I don't see any tutorials show that.
    still looking for help.

  • How to make this function module as RFC to get data from different system?

    Hi
    I am trying to use following function module . This function module is used to copy data from one cube to another cube within same system however I need a this should happen across two different system. How can I use this function module to make it remote call to different system and do the same function what it is doing ?
    Name of function module -
    RSDRT_INFOCUBE_DATA_COPY
    Any help would be really helpful
    AG

    HI,
      let us say you want to copy the data of a cube in system A to a cube in system B .
      1) create a RFC function module in system B (in this function module  call the function module RSDRI_CUBE_WRITE_PACKAGE to update the data), this RFC function module should have same parametersa as RSDRI_CUBE_WRITE_PACKAGE .
    2) write a program in system A .. read the data from the infocube using the function module RSDRI_INFOPROV_READ and call the RFC function module in system B that you have created..
    for the details of the parameters to pass to these two function modules use the RSDRT_INFOCUBE_DATA_COPY and get the required code
    Thanks
    mahesh

  • How to make a function call.

    Hello ,
    I tried to call the function in Form Calc but there are some error. can any one say the right syntax to be used.Please find example what i tried
    if(x eq 1) then
    values()
    endif
    func values()
    xfa.host.messageBox("test")
    endfunc
    Kindly any one let me know where i went wrong
    Best Regards,
    Rakesh

    Hi Rakesh,
    If you look at page 966 of the XFA specification (http://partners.adobe.com/public/developer/xml/index_arch.html#xfa_28), then you will see how to decalre and call a function in FormCalc:
    func MyFunction(param1) do param1*param1 endfunc // Declares a function
    MyFunction(3) //Invokes the function, which returns 9
    It looks like your previous FormCalc function was missing the "do" call.
    Bear in mind that if you start putting functions in script objects, you will have to revert to Javascript.
    Good luck,
    Niall

  • How to make a function out of a query

    Hi,
    I have the following query:
    select
    to_date(sysdate, 'DD.MM.YYYY') as "FULL_DATE",
    to_number(to_char(sysdate, 'D')) as "DAY_OF_WEEK",
    to_number(to_char(sysdate, 'DD')) as "DAY_NUMBER_IN CALENDAR_MONTH",
    to_number(to_char(sysdate, 'DDD')) as "DAY_NUMBER_IN CALENDAR_YEAR"
    from
    dual
    how to I make a funtion where I can input a start and an ending date and it calculates allt the rows fow the days in between?
    Thanks,
    Walter

    drop type mytabletype;
    create or replace type mytype as object (
    full_date date,
    dow number,
    daynum_m number,
    daynum_y number
    create or replace type mytabletype as table of mytype;
    create or replace function myfunc (p_date in date) return mytabletype pipelined as
      cursor cur_mycur is
      select
        to_date(p_date, 'DD.MM.YYYY') as "FULL_DATE",
        to_number(to_char(p_date, 'D')) as "DAY_OF_WEEK",
        to_number(to_char(p_date, 'DD')) as "DAY_NUMBER_IN_CALENDAR_MONTH",
        to_number(to_char(p_date, 'DDD')) as "DAY_NUMBER_IN_CALENDAR_YEAR"
        from dual;
      x mytype := mytype(null,null,null,null);
    begin
      for i in cur_mycur
      loop
        x := mytype(i.full_date,i.day_of_week,i.day_number_in_calendar_month,i.day_number_in_calendar_year);
        pipe row(x);
      end loop;
    end;
    sho err
    select * from table(myfunc(sysdate));
    select * from table(myfunc(to_date('15/09/2006','dd/mm/yyyy')));is this what you're after.
    If so I suggest you take it away, and get an understanding for it. It's a very useful technique to know.
    I know it doesn't do all the days between 2 dates, but that should be something you can do with a little thought.
    Regards
    Message was edited by:
    blushadow

  • Portal Forms - How to make a Field with DEFAULT value NON-EDITABLE by Users

    I HAVE A FORM WITH A DATE FIELD ON IT WITH DEFAULT VALUE.
    THIS IS A TABLE-FIELD.
    I WANT THE FIELD TO BE DISPLAYED ON THE FORM BUT NOT TO ALLOW
    USERS TO EDIT/CHANGE IT.
    HOW CAN I DO THIS?
    TKS IN ADVANCE

    Hi,
    see Re: sequencing problem-Forms
    Regards Michael

  • How to make recursive function for sitetree

    I have a table in the db which contains the page names. Each page has an ID, subpages have a parentID that is the same as the PageID and there is a sort order.
    What I would like to create is a site tree layout where I can add functionalities to add pages, modify order. In fact what I have in mind is something like this:
    SITE EXPLORER
    categories
    article
    edit category
    items
    order
    www<sitename>.
    [order]
    Maincat 1
    [+] [-][move]
    [+][list]
    [edit]
    [+] [change]
    Maincat  2
    [+] [-][move]
    [+][list]
    [edit]
    [+] [change]
    [order]
          subcat 1
    [+] [-][move]
    [+][list]
    [edit]
    [+] [change]
          subcat 2
    [+] [-][move]
    [+][list]
    [edit]
    [+] [change]
    Maincat 3
    [+] [-][move]
    [+][list]
    [edit]
    [+] [change]
    [order]
          subcat 3
    [+] [-][move]
    [+][list]
    [edit]
    [+] [change]
               subcat 3.1
    [+] [-][move]
    [+][list]
    [edit]
    [+] [change]
          subcat 4
    [+] [-][move]
    [+][list]
    [edit]
    [+] [change]
          subcat 5
    [+] [-][move]
    [+][list]
    [edit]
    [+] [change]
    Maincat 4
    [+] [-][move]
    [+][list]
    [edit]
    [+] [change]
    So the column Site explorer has to be created dynamically. I don't know in advanced how deep the structure goes.
    Any good ideas??
    Bianca

    Recursion then is exactly what you need.
    I assume that your top level does not have any value in parentID, so that is where to start. I would do somethign like this.
    <cfquery nam="parents">
    WHERE parentid = ''
    </cfquery>
    <cfloop query="parents">
         <cfset buldLink(parent.text, parent.id) />
    </cfloop>
    <cffunction name="buildLink">
         <cfargument name="text" />
         <cfargument name="id" />
         <!--- Do whatever logic you need here to build the link --->
         <!--- You can output it here or return the value after the next part --->
         <!--- check for children --->
         <cfiquery name="children">
              WHERE parentid = #arguments.id# // Use cfqueryparam
         </cfquery>
         <cfif children.recordcount>
              <cfloop query="children">
                   <cfset buildLink(children.text, children.id) />
              </cfloop>
         </cfif>
    </cffunction>
    Message was edited by: 12Robots Oops accidentally posted before I was done.

  • How to make this function random chose bits and flip it

    Hi ni and member
    I try to make this vi that do this function 
    I need it to use in academic research
    I have  stream of bits  have length=100bitsmove in serial
    and I want a selector that select between ratio  0.1 0.2 or 0.05 that represent error ratio
    its ratio of bit that much flip (0 to 1) and (1 to 0)
    for exqmple
    for 0.1 ratio 10 bit of stream must randomly chosen and flipped
    for 0.5 ratio  50 bit of stream must randomly chosen and flipped
    any help please
    best regards
    hi ?Q>

    GerdW wrote:
    Hi mangood,
    - use a ring or enum for your selector
    - depending on the selector value create a boolean array containing randomly set bits
    - XOR your boolean array with your stream bit array
    Done...
    thank you with kudos
    i did not understand the stament """use a ring or enum for your selector"""
    can you make a pic for the vi  
    best regards
    hi ?Q>

  • How to make this function in enviroment?

    Hi I think I need some help here.
    I want to set a enviroment to switch the audio instruments like the VSL performence tool:
    when I press the first key on the midi keyboard, the first instruments plays , and then the second press , the second instruments play then the third press, the first instruments play .....i mean 2 instrument play in turns .
    so anyone here can give me some suggestion how to build this enviroment?
    Thanks at first.

    this is easy to setup with logic.
    if you go to logicprohelp.com and look up environments and templates, download my basic orchestral template and you will see how i do it.
    basically you set up a GM instrument cabled to a transformer and then to an audio instrument. the transformer then converts information you specify to control aspects of the audio instrumnet/s. in my case i use it to convert program changes to operate keyswitches or articulation switches in my custom made instruments.
    to quickly achieve what you want to do use a cable switcher or selector in faders -> special to switch between different audio instruments.
    - first create a GM instrument, name it and bring it up in arrange.
    - then cable it to a cable switcher in the environment.
    - cable the first cable to 1 AI then the next to the next and so on.
    - select the cable switcher and define the paramter that will activate the switch in the paramters box on the LH side of the screen in environment. you may need to make sure that the midi channels match.
    now, when you do your keyswitch or program change or set a controller the cable switcher will switch the midi information to the correct AI.
    have a look at the percussion page in the environment of my full orchestral template to see how it works if you get stuck.

  • Voice mail activities received, how to make it stop

    I have a Samsung Note 4.
    I am getting a message that says voicemail activities received.  And I get another notification that I have a voicemail.  The activities message comes sometimes hours after the voicemail has been deleted, listened to or received.  I do not want this message.  I have been getting it since the last forced update.
    How do I make it stop?

    Robert0101,
    That is an interesting issue to have. You would think that getting the VM notification would be enough to let you know there is a Voicemail waiting. Question for you, what software version do you have on your Note 4? When did this start happening? I did talk to a few co-workers who have the Note 4 and said that they had the same thing happen and never found an exact way to stop it. But, we will certainly take a closer look into this for you. Please let me know what software version you have. Thanks.
    ErinW_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the "Correct Answer" button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

Maybe you are looking for

  • Catalyst 3750-E (WS-C3750E-24TD) without any license

    Hi. We purchased used switch Catalyst WS-C3750E-24TD. Output (show version) from it is the end of this letter. And we found that it writes to the console: ILET-1-AUTHENTICATION_FAIL: This Switch may not have been manufactured by Cisco or with Cisco's

  • How to append a file directory and its contents in a jTextArea

    how will i display the contents of this file and file directory in a jTextArea or ...let's say it will display the content of "c:/AutoArchive2007-05-24.csv" in a jTextarea say this file "c:/AutoArchive2007-05-24.csv"contains the ff:details user:jeff

  • How do I get photos to render smoother on screen?

    I recently upgraded from OS 10.4.9 to 10.5.7 (after reading through what you guys all said and found I COULD use FH on the new system, thanks), but I notice my photos (tifs) imported into FH don't render as smoothly as they did on the older system. I

  • Mistakes between APC 2009- end and 2010-start

    Hi experts, I found a lot of  assets, where are mistake between APC transaction Year-end 2009 and APC transaction Fiscal year start 2010. I recalculate value for one of them and is OK. I have more assets with mistakes between 2009 mand 2010. I haven'

  • Firefox is not preserving When starts and Home Page in 8.1

    Tools -> Options -> General -> When Firefox starts ---and--- Home Page This information is not staying permanently in Firefox 29.0.1 with Windows 8.1.