Hey guys,
I am creating a Knowledge Base website. I have a database that stores my information. One of the fields is a URL. I want the URL to show as an actual link in the browser and not a website address. This is the code that I am using. I am not sure how to add "a href" to my code and have it not error out.
Any help is much appreciative.
I am creating a Knowledge Base website. I have a database that stores my information. One of the fields is a URL. I want the URL to show as an actual link in the browser and not a website address. This is the code that I am using. I am not sure how to add "a href" to my code and have it not error out.
echo "<td style='white-space:nowrap; text-align: center;'>".$row['Issue']."</td>";
while($row = $result->fetch_array()){
echo "<tr>";
echo "<td style='text-align: center;'>".$row['Hardware / Software']. "</td> ";
echo "<td style='text-align: center;'>".$row['Platform']."</td>";
echo "<td style='text-align: center;'>".$row['Application']."</td>";
echo "<td style='white-space:nowrap; text-align: center;'>".$row['Issue']."</td>";
echo "<td style='text-align: center;'>".$row['Solution']."</td>";
echo "<td style='text-align: center;'>".$row['Date']."</td>";
Any help is much appreciative.