Retrieving the Field Values
Retrieving the Field Values
- CGI protocol is annoyingly complicated (but you don't have to worry about it).
- param(field_name);
- Return value of named field
- param() with no arguments
- Returns array of all named fields
- Works both for scalar & multivalued fields
$customer = param('customer');@toppings = param('topping');