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 223 views
1 answer 416 views
1 answer 206 views
1 answer 556 views
1 answer 178 views
178 views asked Dec 13, 2018 by avibootz
1 answer 163 views
163 views asked Dec 12, 2018 by avibootz
...