Jump to content

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


webguync

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.