Sending a PHP array from an HTML form
I have a PHP array named $CurrentDate[]
I have a simple html form.
<form name='MyForm' method='post' action='Calendar.php'>
<input name="FirstName" type="text">
<input name="LastName" type="text">
<input name='submit' type='submit' value='submit'>
</form>
How do I send the $CurrentDate[] array with the form to the
Calendar.php page?
|