I have an array:
$k[23]='something';
$k[44]='something more';
If a user enters 2,3 and presses 'go' in a virtual 10 digit keypad (will look like a calculator), I need to pass 'something' to browse.php.
If the user press 4,4 and press go, then i have to pass 'something more' to browse.php.
Any ideas? I am new to javascript/php