How to create HTML table with values in PHP

1 Answer

0 votes
$a = 123;
$b = 873;
$c = 9873;
$d = 3.14;
echo "<table border=1 cellspacing=0 cellpading=0>
<tr> <td><font color=green>aaa</td> <td>$a</font></td></tr> 
<tr> <td><font color=blue>bbb</td> <td>$b</font></td></tr>
<tr> <td><font color=red>ccc</td> <td>$c</font></td></tr>
<tr> <td>ddd</td> <td>$d</font></td></tr>
</table>";


 
/*
run:

 
*/

 



answered Feb 23, 2019 by avibootz
edited Feb 23, 2019 by avibootz

Related questions

1 answer 215 views
1 answer 396 views
1 answer 189 views
1 answer 548 views
1 answer 169 views
169 views asked Dec 13, 2018 by avibootz
1 answer 152 views
152 views asked Dec 12, 2018 by avibootz
...