How do you take the code below and pass the values back into flash into the
respective dynmic text boxes?
VIN works by itself but not when Vehicle year is added

// If the number of rows is 0--> no hits on query
if ($numR>0) {
for($i=0; $i < $numR; $i++) {
$row = mysql_fetch_array($result);
}
//this works do not alter
$reply_first = $row['VIN'];
//I want to pass these variables into Flash into respective dynamic text
fields
//$reply_first
="&VIN".$i."=".$row['VIN']."&VehicleYear".$i."=".$row['Vehicle_Year'];
$values = 'reply_first=' . $reply_first;
echo $values;
}
else {
print "not connected ";
}