Results 1 to 2 of 2

Thread: How to put together AJAX Poll in PHP?

  1. #1
    MyersGray is offline Senior Member
    Join Date
    Dec 2009
    Posts
    197
    Rep Power
    3

    Default How to put together AJAX Poll in PHP?

    I am developing one serve website in that website i want to create a Poll by which the users can poll their opinion. But I don't how to do that and don’t have enough idea about the AJAX poll. If you know how to create AJAX Poll in PHP then let me know that. Please reply me as soon as possible. Thanks in advanced.

  2. #2
    SullivanWalker is offline Senior Member
    Join Date
    Dec 2009
    Posts
    189
    Rep Power
    3

    Default

    I suggest you to refer following example of AJAX Poll in PHP, which will give you something idea about the use :

    Code:
    <html>
    <head>
    <script type="demo/javascript" src="poll.js"></script>
    </head>
    <body>
    <div id="poll">
    <h3>Do you like PHP and AJAX??</h3>
    <form>
    Yes:
    <input type="radio" name="vote" value="0" onclick="getVote(this.value)" />
    <br />No:
    <input type="radio" name="vote" value="1" onclick="getVote(this.value)" />
    </form>
    </div>
    </body>
    </html>

Similar Threads

  1. Ajax Vs JavaScript
    By Lucius Silvester in forum Programming
    Replies: 1
    Last Post: 11-08-2010, 04:10 PM
  2. Ajax Vs JavaScript
    By alicia carpenters in forum Programming
    Replies: 1
    Last Post: 07-04-2010, 06:09 AM
  3. More than half of Facebook consumer might give up site, poll finds
    By mark Johnson in forum Latest Hardware News
    Replies: 0
    Last Post: 05-22-2010, 06:17 AM
  4. What is AJAX?
    By WilsonMartin in forum Programming
    Replies: 1
    Last Post: 04-20-2010, 01:26 PM
  5. What is Ajax .Net?
    By WalkerCook in forum Programming
    Replies: 1
    Last Post: 02-08-2010, 04:02 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
SEO by SubmitEdge

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