Hi
I want to pass some variables from one page to another and I'm considering what is the best way to do it. Instead of having a long url&with&a&lot&of&variables, is it possible to create an array and pass it through and url?
- - - - - - - - - - - - - -- - - - - - - - - - - -
For example
<? $List = array("one","two","three","four");?>
<input type="hidden" name="list" value="<?php echo $List; ?>">
and then
goto.php?list=".$_POST['list']
- - - - - - - - - - - - - - - - - - - - - - - - -
I don't know if this is the best or the worst. If you have any comments I will appreciate it lots
thanks
ok









Bookmarks