Is their a Adobe program that can make php script Forms?

I am looking for a Adobe program that can make PHP script Forms like address fields email fields and I also want to make a petition online. They have alot of programs but I dont know what is right for me. Thank you.

None of these "programs" are "right for you".
Designing a form, posting it and treating it is probably the simplest piece of coding you need to learn.
Go to www.w3schools.com and learn how to use forms.
All "programs" that offer you to make forms code them in ways that are not compatible with all browsers: you will always end up by correcting the code yourself! (So why not just learn how to do it? In less than a day, you should know! - And THAT will be free of charge!)

8 Responses to “Is their a Adobe program that can make php script Forms?”

  • Roy says:

    Why not just ask ADOBE directly? I’m sure they have something that works (that they will be more than happy to sell you).
    I’ve provided a few links one of which may help you find out Try the last link first
    References :
    http://www.caspio.com/l/CBO/default111609s.asp
    http://tryit.adobe.com/us/cs4/suiteblack/?sdid=ETSCZ&
    http://www.justanswer.com/
    http://www.adobe.com/support/

  • ??? says:

    hey just go on http://www.google.com and then search your problem…! you can get it also at http://www.adobe.com. i hope you can find it.
    References :

  • Pratik says:

    You will need, Adobe Dreamweaver.
    References :

  • Raj BD says:

    Heyy. You can learn yourself instead. Go for this link : http://www.w3schools.com to learn all webpage related objects like HTML, CSS, PHP, ASP,SQL and many more.

    Thanks
    References :

  • just "JR" says:

    None of these "programs" are "right for you".
    Designing a form, posting it and treating it is probably the simplest piece of coding you need to learn.
    Go to http://www.w3schools.com and learn how to use forms.
    All "programs" that offer you to make forms code them in ways that are not compatible with all browsers: you will always end up by correcting the code yourself! (So why not just learn how to do it? In less than a day, you should know! - And THAT will be free of charge!)
    References :

  • hotcoder says:

    Any Adobe program can’t generate php script automatically. You need to write code by yourself in Adobe Dreamweaver
    References :

  • shrimpwagon says:

    @Just, JR I agree. I noticed your comment was voted down, but being a PHP developer myself, I can attest that writing your own form is a very simple task.

    You would probably end up spending more time with the learning curve of using a program to do what you can do yourself in less time. It is the backend PHP script processing that will take the most of your time, not writing the actual form.
    References :

  • Atif Majid says:

    There are two different things

    1) HTML form with different fields like name, email address, subject, message, send button etc.
    2) PHP Script that will get the values from form and send email (for example)

    You can make the form in Adobe Dreamweaver. Once the form is created, make the "action" attribute in "form" tag as your php script.
    On your php script, you can receive form data using either $_POST or $_GET (depending upon the method attribute) and do whatever you want.
    References :

Leave a Reply