Hi , i am quite new to PHp so excuse the simple question. I have a database with 2 columns, Currency and Price, I want to display both these in one HTML table row, so that the displayed result is something like €2.13
I have tried this:
<?php echo $row['Currency'] && $row['Price'] ?>
But it doesn't work, as you can see here , that code has been used for the "price" column, but only the Price data is displaying,
is && the correct operator to use?
Any help greatly appreciated!