I got following problem:
I am displaying a text, stored in mySql Database in an <p>
element.
When this text is containing an url (e.g: https://google.com/) this url is not clickable and highlighted.
Is there any solution to highlight an url in this <p>
element?
$projectDescription = "Some text..Link1: https://google.com/";
<p class="project-overview-text"><?php echo($projectDescription); ?></p>
on google
– Dmitry Leiko Dec 05 '19 at 21:09