Thanks for your quick reply, but I saw what I was doing wrong.
$myarray = array(
1 => "New",
2 => "Used",
);
Had to be switched to:
$myarray = array(
New => "New",
Used => "Used",
);
I had just grabbed the snipplet from another drop down menu like this I had before where all the values were numbered, where as this one isn't. I found this out by looking at another drop down I had done in the past that was setup like this.
Problem is I'm now receiving this error:
Parse error: syntax error, unexpected T_DOUBLE_ARROW, expecting T_STRING or T_VARIABLE or '$' in /home/bmwmrcom/public_html/admin/bikes.php on line 148
Which is pointing directly to the line I fixed. Any ideas?