Hi. If anyone can help I would appreciate. I new to php and learning more everyday. BUT im working on a site for a friend that was already created in PHP. Here's what Im need to do. The code below is a page the php generates called rentals thru the php it list all the neighborhoods of our rentals with logos. Then it was set up to generate a rentals detail page depending on which logo was selected. I know need to change that to go to a specific page depending on which logo is choosen. Below is successful code doing it the old way, help with the change.
<div class="inside_content_col01_wrapper_inner">
<ul>
<? if ( $communities_list ) {
foreach ( $communities_list as $community ) { ?>
<li><a href="rentals_profile.php?com=<?= $community['community_id'] ?>"><?= $community['community_name'] ?></a></li>
<? } } ?>
</ul>
😕</div>