Originally posted by dcjones
This is the line of code I am trying to use
Hi , <a href="http://".$row<?= $row["web"] ?>><?= $row["web"] ?></a>
That line of code has some problems. The fact that you are displaying $row inline implies that you are working inside a print or echo directive which would make your subsequent <?= ?> tags nested.
Aside from not working, that should have thrown a parse error at you, or made the actual text '$row" show up in your link if it was outside any echo or print directive.
Without knowing what you are doing it is hard to guess, but this might work better:
Hi , <a href="http://<?= $row['web'] ?>"><?= $row['web'] ?></a>