Can i able to post the array value and get that array value
for example in a paging i display only 10 records so i post the recordset and able to get the array value?It is Possible?
how to get post and get array value
Moderator: General Moderators
- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
I'm not sure what you mean?
If you have an array and you want to pass a value from it using GET then:
If you have an array and you want to pass a value from it using GET then:
Code: Select all
$foo = array(1, 2, 4, 8, 16, 32);
echo '<a href="somescript.php?foo_value='.$foo[2].'">Click me</a>';