I have the following code:
if (!empty($row['skype'])) {
echo "<b>Skype:</b> " . $row['skype'] . " <a href=\"skype:venci?chat\">Chat</a>";
}
Unfortunately, this does not display as hyperlink on my website. If I change it to:
if (!empty($row['skype'])) {
echo "<b>Skype:</b> " . $row['skype'] . " <a href=/\"skype:venci?chat\">Chat</a>";
}
The link is displayed, but it is broken - it leads to www.domain.com/%22skype:venci?chat%22
I have other hrefs in my page like:
echo "<b>E-Mail:</b> <a href=mailto:" . $row['email'] .">" . $row['email'] . "</a><br />";
and these are displayed correctly, so I'm wondering.. Why is this not working?