Here is what I am doing. I am setting variable variables like this:
$ref_num = 5;
$num = 0;
while($num<$ref_num) {
$num++;
$to_name_ . $num = trim($_POST['to_name_$num']);
$to_email_ . $num = trim($_POST['to_email_$num']);
}
This works great, but the problem is, when I need to recall the...