Thank you bradgrafelman. I got this to work and am now pulling in an array made up of the POSTed data. Here is an example of what I now have to manipulate:
Array ( [1] => 3/18/2011 [2] => 3/19/2011 [5] => 3/20/2011 )
There are 2 things I want to do with this info (I will save the second until I get this sorted out):
- Enter it as a record in a DB formatted like "3/18/2011, 3/19/2011, 3/20/2011"
I have tried inserting $idatearray (this is the array variable that is for the code above). I tried using parameters like the following:
$params3 = array($firstname, $lastname, $location, $username,$datelast, $promoter, $showid, $idatearray);// This does not work
$params3 = array($firstname, $lastname, $location, $username,$datelast, $promoter, $showid, $idatearray[]);//This does not work
$params3 = array($firstname, $lastname, $location, $username,$datelast, $promoter, $showid, $idatearray[1]);//This DOES work but only inputs the first member of the array
How do I get this to work?