Mobile.mobi Forms - Not Forums

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Mobile.mobi Forms - Not Forums

    I am looking for a online forms solution for .mobi

    Script solution for this would be a great idea for collection of information provided by user. Anyone know of a solution specific for mobi sites?

    #2
    PHP Code:
    <form action="collect.php" method="post">
    Name:<br/>
    <
    input type="text" name="name"><br/>
    Cell no.:<br/>
    <
    input type="text" name="cellno"><br/>
    Other info:<br/>
    <
    input type="text" name="etc" >
    </
    form
    and collect.php
    PHP Code:
    echo "Name: <br/>".$_POST['name'];
    echo 
    "<br/>Cell no.:<br/>".$_POST['cellno'];
    echo 
    "<br/>Other info:<br/>".$_POST['etc']; 
    you can edit this "script" and insert informations in database ori create a text document on server and save here informations.
    good luck.
    if you need more help post here and I help you with pleasure.

    Comment


      #3
      Thankyou

      Thank you.

      I probally will begin a similar product script to mach forms. MachForm - PHP HTML Form Builder - Mailer Form Creator I think the gui part needs modified. I'll post mach forms source for anyone interested

      Comment


        #4
        Originally posted by whiteboy View Post
        PHP Code:
        <form action="collect.php" method="post">
        Name:<br/>
        <
        input type="text" name="name"><br/>
        Cell no.:<br/>
        <
        input type="text" name="cellno"><br/>
        Other info:<br/>
        <
        input type="text" name="etc" >
        </
        form
        and collect.php
        PHP Code:
        echo "Name: <br/>".$_POST['name'];
        echo 
        "<br/>Cell no.:<br/>".$_POST['cellno'];
        echo 
        "<br/>Other info:<br/>".$_POST['etc']; 
        you can edit this "script" and insert informations in database ori create a text document on server and save here informations.
        good luck.
        if you need more help post here and I help you with pleasure.
        Code:
        <form action="collect.php" method="post">
        <div>
        Name:<br/>
        <input  type="text" name="name"><br/>
        Cell no.:<br/>
        <input  type="text" name="cellno"><br/>
        Other info:<br/>
        <input  type="text" name="etc" >
        </div>
        </form>
        to make it .mobi x/html compliant.

        Comment


          #5
          Mach Form Sample

          Originally posted by cottonking2000 View Post
          Thank you.

          I probally will begin a similar product script to mach forms. MachForm - PHP HTML Form Builder - Mailer Form Creator I think the gui part needs modified. I'll post mach forms source for anyone interested
          Here is the MACH FORM Source. Play with it. A mobi version - I shall work on. Yoda
          Attached Files

          Comment

          Working...
          X