how to bring two values into another page...example...
<a href="paparkeputusan2?id=<? echo $id ?>">new_page</a>
coding above bring just 1 value that is 'id'..but i want to bring another value...how to do this....
page.php?id=xxx&id2=yyy
<a href="paparkeputusan2?id=<?php echo $id; ?>&value2=<?php echo $value; ?>">new_page</a>