| 
 Posted by Krustov on 02/05/07 01:26 
<comp.lang.php> 
<Gunnar G> 
<Sat, 03 Feb 2007 08:27:09 GMT> 
<xHXwh.31065$E02.12564@newsb.telia.net> 
 
> In many cases I use URLs like foo.php?a=4b&c=d&e=f&g=h etc. 
> to send variables from one script to another 
> Is there a way to not have the long URL and just call foo.php and send the 
> variables in a more "invisible" way? 
>  
 
You could use a form button instead of a hyperlink . 
 
<input type="hidden" name="user" value="<?php print $uzi; ?>"> 
 
The above variable wont show up on the next page . 
 
 
--  
www.phptakeaway.co.uk 
(work in progress)
 
  
Navigation:
[Reply to this message] 
 |