I am trying to add colors on an 2 dimmensional array to look like this: https://imgur.com/a/giFqm9F
(我试图在2维数组上添加颜色看起来像这样: https ://imgur.com/a/giFqm9F)
What I have created right now is this : https://imgur.com/a/Xab0FUj
(我现在创建的是这样的: https : //imgur.com/a/Xab0FUj)
My code right now :
(我的代码现在:)
<html> <head> <title>Two-dimensional Arrays</title> </head> <body> <h1>Two-Dimensional Arrays</h1> <?php echo "<table border =\"1\" style='border-collapse: collapse'>"; for ($row=1; $row <= 10; $row++) { echo "<tr> \n"; for ($col=1; $col <= 10; $col++) { $p = $col * $row; echo "<td>$p</td> \n"; } echo "</tr>"; } echo "</table>"; ?> </body> </html>
ask by Costas_ translate from so
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…