There is a piece of code that displays the categories of goods on each line in the form of hyperlinks
<?php $sql_cat="SELECT * FROM categories ORDER BY id_cat"; $query_cat=mysql_query($sql_cat) or die(mysql_error()); while ($row_cat=mysql_fetch_array($query_cat)) { ?> <p><a href="?id_cat=<?=$row_cat['id_cat']?>"><?=$row_cat['name_cat'];?></a></p>; <?php } ?>
Explain, please, because I am new to PHP (please treat with understanding), what does the = operator do after? in line
<p><a href="?id_cat=<?=$row_cat['id_cat']?>"><?=$row_cat['name_cat'];?></a></p>;