Search Results

0
votes

How do I get the key values from $_POST?

while( list( $field, $value ) = each( $_POST ) { echo "<p>" . $field . " = " . $value . "</p>\n"; } …
2
votes

How can I create multidimensional arrays in Perl?