Can anyone explain to me why the code below isn't working? I am attaching the screen shot of the results - but I am getting one big string on text... shouldn't the \n be creating a line break between each student and date combination? What I want is:
testing and then the date drop-downs
testing and then the date drop-downs
etc....
foreach($students as $student) {
echo 'testing'.print_date_selector("startday", "startmonth", "startyear");
echo "\n";
}
I must be doing something wrong. I am new to PHP and it seems like this should be working.