Hello,
I have been trying to pass a multi-dimensional array to a submitted page by passing it as a hidden value.
It doesn't seem to pass any values at all. I have read on the many of the sites that this is not possible. Is this true? If so, would you have any thoughts on how I can achieve my goal?
Thanks,
Gary
while ($row = mysql_fetch_assoc($result)) {
$client_id = $row["id"];
$client_date_julian = $row["client_date_julian"];
if ($client_date_julian >= $from_datejulian && $client_date_julian <= $to_datejulian) {
$client_match = "true";
++$client_counter;
$client_first_name = $row["client_first_name"];
$client_last_name = $row["client_last_name"];
$client_address_1 = $row["client_address_1"];
$client_address_2 = $row["client_address_2"];
$client_city = $row["client_city"];
$client_state = $row["client_state"];
$client_zip_code = $row["client_zip_code"];
$client_email_address = $row["client_email_address"];
$client_sign_up_date = $row["client_sign_up_date"];
$client_display .= "<option value=\"$client_email_address\">" . "$client_last_name" . ", " . "$client_first_name" . " - " . "$client_sign_up_date" . "</option>";
$client_range_table [$client_counter] [0] = $client_email_address;
$client_range_table [$client_counter] [1] = $client_first_name;
$client_range_table [$client_counter] [2] = $client_last_name;
$client_range_table [$client_counter] [3] = $client_sign_up_date;
.
.
.
<input type="hidden" name="client_range_table[]" value="$client_range_table">; }