Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
wenn einer von ecuh versucht das hier zu vermarkten, bau ichs open source ;)
vBulletin macht nur einen Link zu Send A Message to an ICQ User ICQ.com -_-VB reicht da schon aus und eine solche Applikation ist in 5 Minuten erstellt.
function hex2str($hex)
{
$str = "";
$hex = explode(' ', $hex);
foreach($hex as $st)
{
$str .= chr(hexdec($st));
}
return $str;
}
function str2hex($str)
{
$hex = "";
$l = strlen($str);
for($i = 0; $i < $l; $i++)
{
if ($i>0)
{
$bound = " ";
}
else
{
$bound = "";
}
$hex .= $bound.str_pad(dechex(ord($str[$i])), 2, 0, STR_PAD_LEFT);
}
return strtoupper($hex);
}