I have a simple form with multi select like this
<select multiple="multiple" name="submitted_category[]" >
<option value="test">test</option>
<option value="tests">tests</option>
<option value="testing">testing</option>
</select>
But when I print_r the array it just prints it as "Array"
Here's the php
$submitted_category = $_POST['submitted_category'];
if(isset($submitted_category)){
print_r($submitted_category);
}