while ($row = mysql_fetch_array ($ver))
{
echo " <option selected value=\"$row[1]\">"$row[2]"</option>";
elseif ($row[1]=="") {
echo "No Rows Found, Noob!";
}
}
I am a more advanced coder - I cannot believe I cannot figure this out, in the dropdown box, it only shows the plaintext "$row[2]" it wont actually show $row[2] the data from SQL.. I know it works because I have tried just echo $row[2]; and it showed data, whats going on here?
Thanks,
M37H0D