How can I make table in PHP with two columns and 10 variables for example (without loop)?
For example:
$var1= $row['name'];
$var2= $row['age'];
The way I want to show it in the table:
______________________
| Customer Name | $var1|
| Customer Age | $var2|