Sorry for the NOOB question, but hey im learning and have found stackoverflow to be of tremendous help to me, so first of all thank you to every contributor on this site
The Question
As the questions title suggest I want to know if it is possible to send multiple variable values from PHP in the Select option tag
Example
Say I have something like this
echo '<option value="'.$row['Rating'].'">'.$row['Player'].'</option>';
Is it possible to include $row['Player'] in the value field TOGETHER with $row['Rating'] which is allready in the value field?
I.E.
Can I do something like this?
Obviously the code below is wrong, but just serves as an examply of what I am trying to do
echo '<option value="'.$row['Rating'].'&&'.$row['Player'].'">'.$row['Player'].'</option>';