![]() |
How to send the selected answer? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: How to send the selected answer? (/showthread.php?tid=22118) |
How to send the selected answer? - El Forum - 08-30-2009 [eluser]benfike[/eluser] Hi! I now work on a POLL system, and have an Question. How can I post the selected answer? And then I Post that, add +1 vote for that answer. Code: <form action="[b]?????[/b]" method="post"> How to send the selected answer? - El Forum - 08-30-2009 [eluser]Nick Husher[/eluser] I think you need a submit button ![]() Code: // poll_view.php How to send the selected answer? - El Forum - 08-30-2009 [eluser]benfike[/eluser] I have an submit button, only not link it. But this fine. Its working, thanks. How to send the selected answer? - El Forum - 08-30-2009 [eluser]benfike[/eluser] My table for answers: votes_answers id - answer id pid -poll id answer - answer name votes - votes number Other Question, how can sum the votes number? So I need to SUM the votes value. |