Quote:
Originally Posted by shara
Hello there,
Can anybody please help me with this.I used one php page from where i've sent a variable to other php page thru a hidden field (HTML).In that page i'm able to retrieve the value before i submit a button.From that page i forwarded the same value to the same page after submitting the button.There i'm just able to use the value as a static content.if fc is the value i retrieved
for ($i=0;$i<$fc;$i++)
{
$var = "a$i";
i have to retrieve a value from the database where a column value should be $$var.But there is no value for $$var.
Moreover,if i dont use any button submission and if there is no such thing like before and after submission but the variable is just used in the second page,there is being some value for $$var.
Please help me with this.Hope this is understandable.
Thanks,
Shara.
I think if you want to pass a variable over multiple forms you put it in a session variable. This way it doesn't have to be in your form. Set the variable when you retrieve it and unset it when the last form is submitted correct.