Longhorn PHP 2025 - Speakers and Schedule Announced!

Voting

: min(six, two)?
(Example: nine)

The Note You're Voting On

info at theindigoworks dot com
18 years ago
re. g8z at yahoo dot com 18-Oct-2004 06:46

I think there is a line missing in

foreach ($keys as $key => $value)
{
$key = addcslashes($key, "\n\r\t\\()");
$fdf .= "<< /T ($key) /V /$value >> \n";
}

I have changed it to read

$key = addcslashes($key, "\n\r\t\\()");
$value = addcslashes($value, "\n\r\t\\()");
$fdf .= "<< /T ($key) /V /$value >> \n";

Now all the check boxes and radio buttons are populated, not just the last one in the form as was happening before.

<< Back to user notes page

To Top