I'm trying to select all values from my MySQL database. Options a, b, and c work fine but I'm not sure of the syntax to select all three.
<option value="1">a</option>
<option value="2">b</option>
<option value="3">c</option>
<option value="1,2,3">All</option>
SELECT * FROM table WHERE id = ' . $_POST['form_select_val'] . '. in the php file. Check the value of the ALL option,<option value="1,2,3">All</option>