You are using method GET correct?  This will not work for POST's on any
platform that I know of.  Browser default behavior for clicks are GET.  You
could create a custom browser to POST all clicks..but wouldn't work very
well :)

Only reason I am asking is "Posting a value" ...though Posting might != POST
:)

On the receiving form ... try the following code and see if anything looks
out of place.

##################

  echo $_SERVER['REQUEST_METHOD'].'<br/><br/>';
  echo 'GET<br/>';
  foreach ($_GET as $key => $value) {
    echo "Key: $key; Value: $value<br/>";
  }
  echo 'POST<br/>';
  foreach ($_POST as $key => $value) {
    echo "Key: $key; Value: $value<br/>";
  }
  die;

##################3

Cheers,

-Peter


> -----Original Message-----
> From: Uma Shankari T. [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, September 29, 2002 05:45
> To: PHP
> Subject: [PHP] Posting a value to one form to another
> 
> 
> 
> Hello ,
> 
> <a href="Delay.php?hid=<?php echo $hid+1; ?>"><img 
> src="Gif/nextque.gif" 
> border="0"></a>
> 
> 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 
> with this..??
> 
> Regards,
> Uma
> 
> 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to