[RESOLVED] Popup - Webbrowser Help
Im using a php/html file to display the latest thread that is posted on a particular forum. All the webpage displays is one single link.
The visual basic app that im creating is a popup to let members know that theres a new thread posted.
Ive got form1 and a webbrowser control in it, when the app pops up it displays this one single link (the link is clickable) in the webbrowser control. Is there anyway to make that link "a non clickable link" ?
Because if the link is clickable it just opens up the page within the webbrowser which i dont want. I want to add my own buttons to re-direct the link.
Or maybe is it possible to disable the webbrowser control so the user cannot interact with it ?
:confused:
Re: Popup - Webbrowser Help
Remove the href attribute of the link and it will be not clickable.
Re: Popup - Webbrowser Help
Ive tried that i think , here the php line of code that displays the link:
PHP Code:
$list = '';
while($fetch = mysql_fetch_array($query))
{
$list .= "<strong><a href=http://www.mysite.com/showthread.php?tid={$fetch['tid']}\">".htmlspecialchars_uni($fetch['subject'])."</a></strong><br />";
Re: Popup - Webbrowser Help
Ok ive got it:
PHP Code:
$list = '';
while($fetch = mysql_fetch_array($query))
{
$list .= "".htmlspecialchars_uni($fetch['subject'])."</a><br />";
Thanks guys