Welcome Guest, Not a member yet? Register   Sign In
Beginner needs help with form
#4

[eluser]CroNiX[/eluser]
You should post the form iteself.

What Tim meant by "get" is how you SEND the form, which is the METHOD in the form opening tag. It's using the get method, which sends the form parameters via the URL like ?name=something&[email protected]. You want to send using the POST method since that's what your app is checking for.

Code:
<form accept-charset="utf-8" method="post" action="http://yoursite.com/adopt">

I'd also look into using the form helper, which simplifies it to just:
Code:
<?=form_open('adopt'); ?>


Messages In This Thread
Beginner needs help with form - by El Forum - 07-24-2014, 05:12 AM
Beginner needs help with form - by El Forum - 07-24-2014, 07:13 AM
Beginner needs help with form - by El Forum - 07-24-2014, 07:37 AM
Beginner needs help with form - by El Forum - 07-24-2014, 10:11 AM
Beginner needs help with form - by El Forum - 07-24-2014, 01:14 PM
Beginner needs help with form - by El Forum - 07-24-2014, 01:39 PM
Beginner needs help with form - by El Forum - 07-24-2014, 01:44 PM
Beginner needs help with form - by El Forum - 07-25-2014, 08:10 AM
Beginner needs help with form - by El Forum - 07-25-2014, 08:17 AM



Theme © iAndrew 2016 - Forum software by © MyBB