When I run this, the hyperlink comes out in text. How do I make the hyperlink come out live?
<?php>
$pc = $_POST['pc'];
If ($pc == 0) {
$pcText = "http://www.yahoo.com";
}
else if ($pc == 1) {
$pcText = "http://www.google.com";
}
?>
<p>Website: <?php echo $pcText ?> </p>