Hello everyone!!! how can I display my records as links in PHP? As of now I want to practice making E-commerce websites
$url = $result["url"]; $linktext = $result["linktext"]; echo "<a href=\"$url\">$linktext</a>"; Of course, in your database you should have the fields url and linktext and previously have selected some information from it in your php script.