I know this doesn't make any sense but I cannot get a piece of code working on safari that works on IE on a PC.
Here is the form:
echo "<INPUT TYPE='checkbox' name='girlattend[]' value='".$row['girl_ID']."'>";
Here is the next page that it is posted to:
$girlattend = $_POST['girlattend'];
When I do an echo count($_POST['girlattend']); - it returns the correct number on a PC but on Safari on a mac it returns 0.
Any ideas - would be greatly appreciated.
I have tried with or without the single quotes on the name and values.