Jump to content

taking <table> and <tr> out of the loop


Recommended Posts

Hi I currently have some code which creates a <table><tr> and <td> for each value. I only want one <table> and <tr>, but not sure how to take those elements out of the loop. Here is my code...

foreach($answers as $value){
     if (in_array($value, $wrong)){
          $class = "wrong";
     } else {
          $class = "correct";
     }
     echo "<table><tr><td class=\"$class\">$value</td></tr></table>";
}

?>

Link to comment
https://forums.phpfreaks.com/topic/199552-taking-and-out-of-the-loop/
Share on other sites

echo "<table><tr>"
foreach($answers as $value){
     if (in_array($value, $wrong)){
          $class = "wrong";
     } else {
          $class = "correct";
     }
     echo "<td class=\"$class\">$value</td>";
}
echo "</tr></table>";

 

edit: meh beaten before i could post, but posting anyways

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.