12-26-2010, 02:53 PM
|
#3 (permalink)
|
|
The Acquainted
Join Date: Nov 2009
Location: nr Stratford-Upon-Avon
Posts: 137
Thanks: 3
|
Now to show itterate though the array and show the data...
Code:
for ($i=0; $i < count($_REQUEST['col1']); $i++) {
echo $_REQUEST['col1'][$i]." -- ";
echo $_REQUEST['col2'][$i]." -- ";
echo $_REQUEST['col3'][$i]."<br />";
}
__________________
Thanks... Simon
Sex, Drugs & Linux Rules
|
|
|