Re: [PHP] Posting a value to one form to another

2002-09-28 Thread Uma Shankari T.
Hello, On Sun, 29 Sep 2002, Chris Shiflett wrote: CS>Uma, CS> CS>I'm sorry, but I'm still confused. Maybe someone else better understands CS>your question. CS> CS>Given the following example script, delay.php: CS> CS>echo $_GET["hid"]; CS>?> CS> CS>A URL such as http://example.org/delay.php?hi

Re: [PHP] Posting a value to one form to another

2002-09-28 Thread Chris Shiflett
Uma, I'm sorry, but I'm still confused. Maybe someone else better understands your question. Given the following example script, delay.php: A URL such as http://example.org/delay.php?hid=4 will output the following: 4 Are you saying this is not happening? This is what it sounds like you a

Re: [PHP] Posting a value to one form to another

2002-09-28 Thread Uma Shankari T.
Hello, CS> CS>So, you are saying your URL looks something like this: CS> CS>http://example.org/delay.php?hid=4 Yes..my url is look like this only.. CS> CS>And, when you output the value of $_GET["hid"], it outputs 3? CS> But in the url the value are getting incremented and it is displaying t

Re: [PHP] Posting a value to one form to another

2002-09-28 Thread Chris Shiflett
Uma, So, you are saying your URL looks something like this: http://example.org/delay.php?hid=4 And, when you output the value of $_GET["hid"], it outputs 3? Uma Shankari T. wrote: >Actually it is displaying in the url bar correctly with the >incremented $hid value..but displaying the result

Re: [PHP] Posting a value to one form to another

2002-09-28 Thread Uma Shankari T.
Hello, On Sun, 29 Sep 2002, Sascha Cunz wrote: SC>Oops, of course you must add one to it, too. like: SC> SC> Still it is incrementing but not fetching the value correspond from the database..In linux paltform it is working without any error..Can anyone please tell me how to go about with th

Re: [PHP] Posting a value to one form to another

2002-09-28 Thread Sascha Cunz
Oops, of course you must add one to it, too. like: Regards, Sascha > Hello, > > > On Sun, 29 Sep 2002, Sascha Cunz wrote: > > SC>I think your linux plattform has a version of PHP older than 4.2.0 and > your SC>Windows machine has a newer Version. In this "old" Versions, > Register_Globals SC>wa

Re: [PHP] Posting a value to one form to another

2002-09-28 Thread Uma Shankari T.
Hello, On Sun, 29 Sep 2002, Sascha Cunz wrote: SC>I think your linux plattform has a version of PHP older than 4.2.0 and your SC>Windows machine has a newer Version. In this "old" Versions, Register_Globals SC>was turned on. SC>Try to access $hid by using: SC> I have tried like the code

Re: [PHP] Posting a value to one form to another

2002-09-28 Thread Sascha Cunz
I think your linux plattform has a version of PHP older than 4.2.0 and your Windows machine has a newer Version. In this "old" Versions, Register_Globals was turned on. Try to access $hid by using: Regards Sascha > Hello , > > border="0"> > > While clicking this link the $hid value get incre

RE: [PHP] Posting a value to one form to another

2002-09-28 Thread Thoenen, Peter Mr. EPS
lue: $value"; } echo 'POST'; foreach ($_POST as $key => $value) { echo "Key: $key; Value: $value"; } die; ##3 Cheers, -Peter > -Original Message- > From: Uma Shankari T. [mailto:[EMAIL PROTECTED]] > Sent: Sunday, September 29

[PHP] Posting a value to one form to another

2002-09-28 Thread Uma Shankari T.
Hello , While clicking this link the $hid value get incremented and fetch the value from the database according to that..the same thing is working in linux platform and it is not working for the windows platform..the value is not getting increment..Can anyone please tell me how to go about

Re: [PHP] Posting a value to one form to another

2002-09-28 Thread debbie_dyer
t; <[EMAIL PROTECTED]> To: "PHP" <[EMAIL PROTECTED]> Sent: Saturday, September 28, 2002 9:42 AM Subject: [PHP] Posting a value to one form to another > > Hello , > > border="0"> > > While clicking this link the $hid value get incremented and fetch the

[PHP] Posting a value to one form to another

2002-09-28 Thread Uma Shankari T.
Hello , While clicking this link the $hid value get incremented and fetch the value from the database according to that..the same thing is working in linux platform and it is not working for the windows platform..the value is not getting increment..Can anyone please tell me how to go about