this might not be a PHP ? folks, but I have a report, and the left side table prints out and has hrefs in it via < a > tags printed by PHP’s “echo”. now I click the links to go to a 3rd party sight. however, the site doesn’t use GET[] with the ? qry. string spec to get explicit pages for certain criteria. thus, I have to copy the href link as text, click the link, go to the page, and past the text into the search box and submit the form I want to use. can I automated this anymore than I have now? here’s the code that gives the hrefs on the first page:
// printing table rows
while($row = mysqli_fetch_row($sql)) {
echo '<tr>';
$index = 0;
foreach ($row as $key => $col) {
if ($index == 0) {
echo "<td><a href='https://www.site.net/' target='_blank'>$col</a></td>"; }
else { echo "<td>$col</td>"; }
$index++;
}
echo '</tr>';
}
thanks.