Hi All,
I have a set of values on an HTML page.
I’ve been taking the values one at a time from the CGI:
[php]$month3=$_REQUEST[‘month3’];
$day3=$_REQUEST[‘day3’];
$year3=$_REQUEST[‘year3’];[/php]
And then creating an array directly:
[php]
$row = array {
“month3” => $month3,
“day3” => $day3,
“year3” => $year3
};[/php]
Seems there should be a way to combine those two steps? I also need the values (i. e. $month3) for use elsewhere in the program. Can’t figure out how to generate key value pairs, or something…
Thanks!