Jump to content
  • 0

Закрасить таблицу(PHP)


Maxi
 Share

Question

Здравствуйте

Учусь PHP, в задачке нужно в цикле вывести табличку и закрасить определенные ячейки.

Таблицу вывел, а как закрасить не пойму)

Как мне допустим закрасить третью ячейку во второй строке и сменить цвет текста в 5 строке у всех ячеек?

Буду рад если с пояснениями)


echo '<table border="1">';

for ($a=1; $a <= 7; ++$a) {
echo '<tr>';
for ($b=1; $b <= 8 ; $b++) {
echo '<td>'.$a.$b.'</td>';
}
echo '</tr>';
}

echo '</table>';

Edited by Maxi
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Test</title>
<style>
.active {
background: red;
}
.text {
color: red;
}
</style>
</head>
<body>
<?php
echo '<table border="1">';
for ($a = 1; $a <= 7; $a++) {
echo '<tr>';
for ($b = 1; $b <= 8 ; $b++) {
if ($a == 2 && $b == 3) {
echo '<td class="active">' . $a . $b . '</td>';
} else if ($a == 5){
echo '<td class="text">'. $a . $b . '</td>';
} else {
echo '<td>'. $a . $b .'</td>';
};
};
echo '</tr>';
};
echo '</table>';
?>
</body>
</html>

Edited by web-monster
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  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.

 Share

×
×
  • 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. See more about our Guidelines and Privacy Policy