Posted by Shelly on 07/19/05 00:23
<el_roachmeister@yahoo.com> wrote in message
news:1121702293.333760.300950@g47g2000cwa.googlegroups.com...
> Is there a way to make a text link post to a form without passing all
> the parameters in the url? The urls tend to get very long and messy. I
> often wonder if there is a limit to how long they can get?
>
How about setting all those variable in an array:
$theArray = array();
$theArray['item1'] = "item1 value";
etc.
$_SESSION['theArray'] = $theArray;
Then in the receiving page:
$theArray = $_SESSION['theArray'] ;
and then use
$theArray['item1'], etc.
If they weren't set then the value is NULL.
BTW, this works for me.
Shelly
Navigation:
[Reply to this message]
|