Thanks for the reply beirti
I'm trying to insert the data into a mySQL DB.
This is what i currently trying but to no avail:
if ($_POST['upload_states']){
include ("db_conn_open.php");
for ($i=1; $i <= $_POST['range_count'] ; $i++){
$iSQL = "INSERT INTO states (countryID,stateName,stateAbbrev,stateTax,stateEnabled) VALUES (" . $_POST['countryID'] . "," . $_POST['stateName'][$i] . "," . $_POST['stateAbbrev'][$i] . "," . $_POST['stateTax'][$i] . "," . $_POST['stateEnabled'][$i] . ")";
$result = mysql_query($iSQL);
}
if ($result){
echo "Success";
} else {
echo "Nup!";
}
Thanks for your time.
micmac