somebody help me!passing variable to same page after button submit

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • shara
    New Member
    • Dec 2006
    • 28

    somebody help me!passing variable to same page after button submit

    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.
  • xwero
    New Member
    • Feb 2007
    • 99

    #2
    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.

    Comment

    • shara
      New Member
      • Dec 2006
      • 28

      #3
      Originally posted by xwero
      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.
      Thanks for responding.But its not that i want to pass a varible over forms.If i am retrieving the value of a variable directly from one page to other to perform some action,i am able to get some value for $$var.But its not the case if i want give a warning (button submit)before taking that action and then using $$var after button submission.In this case i'm not able to have any value for $$var.Can you please help me with this.

      Comment

      Working...