<?php
$t1score = $_POST['T1'];
$t2score = $_POST['T2'];
if(is_array($t1score)) {
foreach($t1score as $key=>$value) {
echo $key;
echo $value;
}
}
?>
i get this to print
Key - t1score - t2score
932 - 5 - ???
I need to the t2score to print as well. it's a series of textbox's which will have different numbers in them. Each id has T1 and T2 with the id ie: 932
can someone please help