Welcome Guest, Not a member yet? Register   Sign In
Cannot get the data in another page in CI
#1

I have form and when i submit that data are passed to next page i can see that in url. but i when i get and print that it shows nothing , here i have attached my coding

<form action="addfilters/add"><input type="hidden" name="id" value=<?php echo $filters->id ?> > <input type="submit" value="Add New"></form>

my controller

<?php
class AddFilters extends Admin_Controller
{
function add(){
echo $this->input->post('id');
}
}

URL

http://localhost/code/index.php/admin/ad...s/add?id=1

but when i print ,it shows nothing , please help me
Thanks and Regards,
Thamaraiselvam T
Reply
#2

(01-20-2015, 12:36 AM)Thamaraiselvam Wrote: I have form and when i submit that data are passed to next page i can see that in url. but i when i get and print that it shows nothing , here i have attached my coding

<form action="addfilters/add"><input type="hidden" name="id" value=<?php echo $filters->id ?> > <input type="submit" value="Add New"></form>

my controller

<?php
class AddFilters extends Admin_Controller
{
function add(){
echo $this->input->post('id');
}
}

URL

http://localhost/code/index.php/admin/ad...s/add?id=1

but when i print ,it shows nothing , please help me

maybe it's because you getting your data in GET parameter beacause you didn't set your method in form like
<form action="your_url" method="POST">
Reply
#3

maybe it's because you didn't set method in your form like <form action="your_url" method="POST">
if you don't set it and if I remember good default value of method is GET Smile
Reply




Theme © iAndrew 2016 - Forum software by © MyBB