Hello all,
I have an Array that looks like this:
Array ( [0] => 28 [1] => 29 [2] => 10 )
These are ID values pulled from an "Employee" table out of mySQL. I would like to take these ID's and post them to a php page that would then do the following:
Pull all information from the 'Employee' Table for each of the ID's,
Insert some of that information into another Table.
Send an email to each of the ID's (the email address is one of the values pulled from the 'Employee' table).
Basically, i just need to know how to exctract the ID values out of that array, and then do those 3 tasks with the ID's.
Any help is GREATLY appreciated!
Thanks, Jon