Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
203 views
in Technique[技术] by (71.8m points)

php - 在php数组上添加颜色(Adding color on a php array)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...