Hallo Leute,
ich würde gerne alle Hyperlinks in $content als Hyperlink anzeigen!
Wie schaff ich das?
Schönen Dank für tatkräftige Unterstützung!
Hab schon etwas gesucht, aber so wirklich was einfaches hab ich noch nicht gefunden!
ich würde gerne alle Hyperlinks in $content als Hyperlink anzeigen!
Wie schaff ich das?
Schönen Dank für tatkräftige Unterstützung!
Hab schon etwas gesucht, aber so wirklich was einfaches hab ich noch nicht gefunden!
PHP-Code:
function window($title,$content,$width=300,$height=500,$id){
echo '
<div onmousedown="dragstart(this)" id="'.$id.'" class="hide" style="position:absolute;top:300px;left:500px;
height:'.$height.'px;width:'.$width.'px;background:#FF9933">
<table border="0" width="100%" id="table1" cellpadding="0" style="border-collapse: collapse">
<tr>
<td width="91%" height="33"> <b><font face="Verdana" size="2" color="#FFFFFF">'.$title.'</font></b></td>
<td width="7%" height="33">
<p align="center"><font color="#FFFFFF" face="Verdana" size="2">
<span onClick="HideWindow(\''.$id.'\')">CLOSE</span></font></td>
</tr>
<tr>
<td height="33" colspan="2" bgcolor="#C0C0C0">
<table border="0" height="100%" width="100%" id="table2" cellpadding="10" style="border-collapse: collapse">
<tr>
<td><font face="Verdana" size="2">'.$content.'</font></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
';
}
Kommentar