Sorry, my code:
$message5 .="5. What is missing from this site(select all applied)\n\n";
$i=0;
while($output = $missing[$i]){
$message5 .= $output."\n";
$i++;
I need the answers for this question like below:
5. What is missing from this site?
Audio files
Video files
At the moment, it is like:
- What is missing from this site?
Audio files
Video files
How can I modify the php code above to get the output that I need? Thanks for your help.