I have the following code that is echoed to a webpage once a form is sumbitted:
echo"<tr><td style='width:30px;'></td><td colspan='2' class='border'>{$row['SiteAddress']}</td><td colspan='2' class='border2' style='text-align:right'>Folder ID: <a href='#' id='myBtn' data-toggle='modal' data-target='#myModal'>{$row['FolderID']}</a></td>";
The hyperlink is used to open a carousel of images in a pop-up window and the link text that is inserted as {$row['FolderID']} is needed to concatenate the path to the images. I've found plenty of examples how to easily get the href link but I am having difficulty getting the value of the link text. I'm sure this is a simple thing to do for some but I'm confused. Question: How do I get the link text value into php?