here is the html checkbox code
<input name="services" type="checkbox" value="*" checked>
<input name="services" type="checkbox" value="option1"> <input name="services" type="checkbox" value="option2"> <input name="services" type="checkbox" value="option3">
and the php
$services = $_POST['services'];
do i need to make $services an array, and if so would that be @services.
Thanks for the help