Hi all,
I have a textfield that is to pass 3 values. I set it as an array to do so. Is this correct?
How do I then break the array variables up? Triesd below...
Thanks.
$value = $row2['number'].'-'.$row2['class_ID'];
<input type="text" class="results" name="attempt['.$value.']" id="attempt" value="" />
$attempt = $_POST['attempt'];
// Split vars
list($ffnumber, $class) = split('[/.-]', $attempt);