I want to use this variable:
$id= $row['property_id'];
Inside this href after the equals sign after 'id'
echo "<td>""<a href='product_description.php?id='>" . $row['PropertyType'] . "</a></td>";
How can I do this? I think it may be a problem with escaping quotes but I can't seem to find a solution. I'm new to php and would appreciate the help
$row['PropertyType']?echo "<td><a href='product_description.php?id={$row['property_id']}'>{$row['PropertyType']}</a></td>";?