Re: array of form data



If your form method is "get", do

<?php
echo '<pre>';print_r ($_GET);echo '</pre>';
?>

If it is "post", substituted $_POST for $_GET.

Ken


Ah!! I *knew* it was something simple! You rock! Mark .