I have this array, $hscoorer[], wich is containing severel names. The arrays values is loaded from a form. I want to be able to print out one of the values.
This works:
print $_POST['hscoorer'];
But it only prints out the last value
So I have tried this, but it doesn't work:
print $_POST['hscoorer[1]'];
So, how should I do to print out the specific value?