well, include that file into your phpinclude_start template:
PHP Code:
<?php
/*======================================================================*\
|| #################################################################### ||
|| # v3 SMS System 1.0. by PcFreak [[url]http://at-lantis.de][/url] ||
|| # SMS empfangen auf jeder Seite. ||
|| # Please click install if you used this hack ||
|| #################################################################### ||
\*======================================================================*/
// ##### SMS SYSTEM #####
$smsvorhanden = $DB_site->query_first("
SELECT id_vom_empfaenger
FROM " . TABLE_PREFIX . "sms
WHERE id_vom_empfaenger = $bbuserinfo[userid]
");
if ($smsvorhanden[id_vom_empfaenger] == '')
{ $smshtml = '';}
else
{
$smshtml = "
<script>
function popsms(){
win = window.open('sms.php?do=sms_lesen','_blank','toolbar=no,location=no,menubar=no,scrollbars=yes,width=5 50,height=500,resizeable=no,status=no');
}
</script>
<body onLoad='popsms()'></body>";
}
// ##### SMS SYSTEM #####
?>
and then put $smshtml into your header template, i assume that should work.